diff --git a/.github/workflows/fetch_all_tools.yaml b/.github/workflows/fetch_all_tools.yaml index 4446a057..4bbfc5e8 100644 --- a/.github/workflows/fetch_all_tools.yaml +++ b/.github/workflows/fetch_all_tools.yaml @@ -16,42 +16,30 @@ permissions: contents: write jobs: - fetch-available-servers: - runs-on: ubuntu-20.04 - name: Fetch list of all available servers - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - - name: Install requirement - run: python -m pip install -r requirements.txt - - name: Run script - run: | - python bin/get_public_galaxy_servers.py -o data/available_public_servers.csv - - name: Commit servers - # add or commit any changes in results if there was a change, merge with main, and push as bot - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git pull --no-rebase -s recursive -X ours - git add data - git status - git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tools bot - step get available servers") - git push fetch-all-tools-stepwise: runs-on: ubuntu-20.04 environment: fetch-tools name: Fetch all tool stepwise strategy: + max-parallel: 1 #need to run one after another, since otherwise there is a chance, that mulitple jobs want to push to the results branch at the same time (which fails due to merge) matrix: - python-version: [3.8] + python-version: [3.11] subset: - repositories01.list - repositories02.list - repositories03.list - repositories04.list steps: - - uses: actions/checkout@v4 + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -63,43 +51,50 @@ jobs: env: GITHUB_API_KEY: ${{ secrets.GH_API_TOKEN }} - name: Commit all tools - # add or commit any changes in results if there was a change, merge with main and push as bot - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git pull --no-rebase -s recursive -X ours - git add results - git status - git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tools bot - step fetch") - git push + uses: s0/git-publish-subdir-action@develop + env: + BRANCH: results + FOLDER: results + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO: self + SKIP_EMPTY_COMMITS: true + MESSAGE: "Update results step: fetch all tool stepwise - commmit {sha}" fetch-all-tools-merge: runs-on: ubuntu-20.04 needs: fetch-all-tools-stepwise name: Fetch all tools merge steps: - - uses: actions/checkout@v4 - with: - ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) - - uses: actions/setup-python@v5 - - name: Install requirement - run: | - python -m pip install -r requirements.txt - sudo apt-get install jq - - name: Merge all tools - run: | #merge files with only one header -> https://stackoverflow.com/questions/16890582/unixmerge-multiple-csv-files-with-same-header-by-keeping-the-header-of-the-firs; map(.[]) -> https://stackoverflow.com/questions/42011086/merge-arrays-of-json (get flat array, one tool per entry) - awk 'FNR==1 && NR!=1{next;}{print}' results/repositories*.list_tools.tsv > results/all_tools.tsv - jq -s 'map(.[])' results/repositories*.list_tools.json > results/all_tools.json - - name: Wordcloud and interactive table - run: | - bash bin/format_tools.sh - - name: Commit all tools - # add or commit any changes in results if there was a change, merge with main and push as bot - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git pull --no-rebase -s recursive -X ours - git add results - git status - git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tools bot - step merge") - git push + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install requirement + run: | + python -m pip install -r requirements.txt + sudo apt-get install jq + - name: Merge all tools + run: | #merge files with only one header -> https://stackoverflow.com/questions/16890582/unixmerge-multiple-csv-files-with-same-header-by-keeping-the-header-of-the-firs; map(.[]) -> https://stackoverflow.com/questions/42011086/merge-arrays-of-json (get flat array, one tool per entry) + awk 'FNR==1 && NR!=1{next;}{print}' results/repositories*.list_tools.tsv > results/all_tools.tsv + jq -s 'map(.[])' results/repositories*.list_tools.json > results/all_tools.json + - name: Wordcloud and interactive table + run: | + bash bin/format_tools.sh + - name: Commit all tools + # add or commit any changes in results if there was a change, merge with main and push as bot + uses: s0/git-publish-subdir-action@develop + env: + BRANCH: results + FOLDER: results + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO: self + SKIP_EMPTY_COMMITS: true + MESSAGE: "Update results step: fetch all tools merge - commmit {sha}" \ No newline at end of file diff --git a/.github/workflows/fetch_all_tutorials.yaml b/.github/workflows/fetch_all_tutorials.yaml index e120f1d2..85412d40 100644 --- a/.github/workflows/fetch_all_tutorials.yaml +++ b/.github/workflows/fetch_all_tutorials.yaml @@ -21,7 +21,15 @@ jobs: environment: fetch-tutorials name: Fetch all tutorials steps: - - uses: actions/checkout@v4 + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results - uses: actions/setup-python@v5 with: python-version: '3.11' @@ -33,12 +41,11 @@ jobs: env: PLAUSIBLE_API_KEY: ${{ secrets.PLAUSIBLE_API_TOKEN }} - name: Commit all tools - # add or commit any changes in results if there was a change, merge with main and push as bot - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git pull --no-rebase -s recursive -X ours - git add results - git status - git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tutorials bot - step fetch") - git push + uses: s0/git-publish-subdir-action@develop + env: + BRANCH: results + FOLDER: results + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO: self + SKIP_EMPTY_COMMITS: true + MESSAGE: "Update results step: fetch all tutorials - commmit {sha}" diff --git a/.github/workflows/filter_communities.yaml b/.github/workflows/filter_communities.yaml index cffaae36..48455f90 100644 --- a/.github/workflows/filter_communities.yaml +++ b/.github/workflows/filter_communities.yaml @@ -26,12 +26,21 @@ permissions: jobs: filter-all-tutorials: + name: Filter tutorials runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results - uses: actions/setup-python@v5 with: - python-version: '3.8' + python-version: '3.11' - name: Install requirement run: python -m pip install -r requirements.txt - name: Run script @@ -39,22 +48,31 @@ jobs: bash bin/get_community_tutorials.sh - name: Commit results # commit the new filtered data, only if stuff was changed - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git pull --no-rebase -s recursive -X ours - git add results - git status - git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tutorials / tools bot - step tutorial filter") - git push + uses: s0/git-publish-subdir-action@develop + env: + BRANCH: results + FOLDER: results + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO: self + SKIP_EMPTY_COMMITS: true + MESSAGE: "Update results step: filter tutorials - commmit {sha}" update-tools-to-keep-exclude: + name: Update tool to keep and exclude runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results - uses: actions/setup-python@v5 with: - python-version: '3.8' + python-version: '3.11' - name: Install requirement run: python -m pip install -r requirements.txt - name: Run script @@ -62,22 +80,31 @@ jobs: bash bin/update_tools_to_keep_exclude.sh - name: Commit results # commit the new filtered data, only if stuff was changed - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git pull --no-rebase -s recursive -X ours - git add results - git status - git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tutorials / tools bot - step exluded/kept tool list update") - git push + uses: s0/git-publish-subdir-action@develop + env: + BRANCH: results + FOLDER: results + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO: self + SKIP_EMPTY_COMMITS: true + MESSAGE: "Update results step: update tool to keep and exclude - commmit {sha}" filter-all-tools: + name: Filter all tools runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results - uses: actions/setup-python@v5 with: - python-version: '3.8' + python-version: '3.11' - name: Install requirement run: python -m pip install -r requirements.txt - name: Run script @@ -85,14 +112,13 @@ jobs: bash bin/get_community_tools.sh - name: Commit results # commit the new filtered data, only if stuff was changed - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git pull --no-rebase -s recursive -X ours - git add results - git status - git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tools bot - step tool filter") - git push - + uses: s0/git-publish-subdir-action@develop + env: + BRANCH: results + FOLDER: results + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO: self + SKIP_EMPTY_COMMITS: true + MESSAGE: "Update results step: filter all tools - commmit {sha}" \ No newline at end of file diff --git a/.github/workflows/run_tests.yaml b/.github/workflows/run_tests.yaml index 6bef8c26..83fff590 100644 --- a/.github/workflows/run_tests.yaml +++ b/.github/workflows/run_tests.yaml @@ -1,12 +1,20 @@ name: Run tests -on: [push, pull_request] +on: [push, pull_request_target] jobs: test-tools: runs-on: ubuntu-20.04 environment: fetch-tools steps: - - uses: actions/checkout@v4 + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results - uses: actions/setup-python@v5 with: python-version: '3.11' @@ -26,7 +34,15 @@ jobs: test-tutorials: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v4 + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results - uses: actions/setup-python@v5 with: python-version: '3.11' diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 67d3814b..afa9a3ab 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -35,6 +35,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + ref: results - name: Setup Pages uses: actions/configure-pages@v4 - name: Upload artifact diff --git a/.github/workflows/utilities.yml b/.github/workflows/utilities.yml new file mode 100644 index 00000000..0e42d3fd --- /dev/null +++ b/.github/workflows/utilities.yml @@ -0,0 +1,46 @@ +name: Utilities +on: + workflow_dispatch: + schedule: + #Every Sunday at 7:00 am + - cron: "0 7 * * 0" + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "tools" + cancel-in-progress: false + +permissions: + contents: write + +jobs: + fetch-available-servers: + runs-on: ubuntu-20.04 + name: Fetch list of all available servers + steps: + - name: Checkout main + uses: actions/checkout@v4 + with: + ref: main #pull latest code produced by job 1, not the revision that started the workflow (https://github.com/actions/checkout/issues/439) + - name: Checkout results + uses: actions/checkout@v4 + with: + ref: results + path: results + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install requirement + run: python -m pip install -r requirements.txt + - name: Run script + run: | + python bin/get_public_galaxy_servers.py -o results/available_public_servers.csv + - name: Commit servers + uses: s0/git-publish-subdir-action@develop + env: + BRANCH: results + FOLDER: results + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO: self + SKIP_EMPTY_COMMITS: true \ No newline at end of file diff --git a/README.md b/README.md index 699f7c9c..d88cac7e 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ A GitHub action performs every week the following steps: 3. Run the script to extract all tools ``` - $ python bin/extract_all_tools.sh + $ 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: @@ -152,7 +152,7 @@ A GitHub action performs every week the following steps: 3. Run the script ``` - $ python bin/extract_all_tutorials.sh + $ bash bin/extract_all_tutorials.sh ``` ## Filter tutorials based on tags outside a GitHub Action diff --git a/bin/extract_all_tools.sh b/bin/extract_all_tools.sh index 3cae1a7a..faa0822d 100755 --- a/bin/extract_all_tools.sh +++ b/bin/extract_all_tools.sh @@ -4,7 +4,7 @@ mkdir -p 'results/' if [ ! -z $1 ] then - if [ $1=="test" ] + if [ $1 == "test" ] then echo "Test tool extraction" python bin/extract_galaxy_tools.py \ diff --git a/bin/extract_galaxy_tools.py b/bin/extract_galaxy_tools.py index 04a2afc2..a7c2c408 100644 --- a/bin/extract_galaxy_tools.py +++ b/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("data", "available_public_servers.csv") +public_servers = project_path.joinpath("results", "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"), @@ -761,9 +761,16 @@ def get_tools(repo_list: list, edam_ontology: dict) -> List[Dict]: # filter tool lists ts_filtered_tools, filtered_tools = filter_tools(tools, categories, status) - export_tools_to_tsv(ts_filtered_tools, args.ts_filtered, format_list_col=True) - # if there are no filtered tools return the ts filtered tools - if filtered_tools: - export_tools_to_tsv(filtered_tools, args.filtered, format_list_col=True) + + if ts_filtered_tools: + + export_tools_to_tsv(ts_filtered_tools, args.ts_filtered, format_list_col=True) + # if there are no filtered tools return the ts filtered tools + if filtered_tools: + export_tools_to_tsv(filtered_tools, args.filtered, format_list_col=True) + else: + export_tools_to_tsv(ts_filtered_tools, args.filtered, format_list_col=True) + else: - export_tools_to_tsv(ts_filtered_tools, args.filtered, format_list_col=True) + # if there are no ts filtered tools + print(f"No tools found for category {args.filtered}") diff --git a/bin/get_community_tools.sh b/bin/get_community_tools.sh index c4082dc9..33921a56 100755 --- a/bin/get_community_tools.sh +++ b/bin/get_community_tools.sh @@ -3,7 +3,7 @@ # stop on error set -e -if [[ ! -z $1 && $1=="test" ]]; then +if [[ ! -z $1 && $1 == "test" ]]; then python bin/extract_galaxy_tools.py \ filter \ --all "results/all_tools.json" \ diff --git a/data/available_public_servers.csv b/data/available_public_servers.csv deleted file mode 100644 index 3452b031..00000000 --- a/data/available_public_servers.csv +++ /dev/null @@ -1,38 +0,0 @@ -name url -ANASTASIA http://motherbox.chemeng.ntua.gr/anastasia_dev/ -APOSTL http://apostl.moffitt.org/ -ARGs-OAP http://smile.hku.hk/SARGs -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 -CorGAT http://corgat.cloud.ba.infn.it/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 diff --git a/results/all_tools.json b/results/all_tools.json deleted file mode 100644 index b27c96f9..00000000 --- a/results/all_tools.json +++ /dev/null @@ -1,107162 +0,0 @@ -[ - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper", - "Galaxy wrapper version": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 7, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "Up-to-date", - "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.32", - "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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.0b4", - "EDAM operation (no superclasses)": [], - "EDAM topic (no superclasses)": [], - "Available on UseGalaxy.org (Main)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "Up-to-date", - "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.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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" - ], - "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/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": "3.12.0", - "Conda id": "bioconductor-xcms", - "Conda version": "4.0.0", - "EDAM operation (no superclasses)": [], - "EDAM topic (no superclasses)": [], - "Available on UseGalaxy.org (Main)": 9, - "Available on UseGalaxy.org.au": 9, - "Available on UseGalaxy.eu": 10, - "Available on UseGalaxy.fr": 10, - "Tools available on UseGalaxy.org (Main)": 9, - "Tools available on UseGalaxy.org.au": 9, - "Tools available on UseGalaxy.eu": 10, - "Tools available on UseGalaxy.fr": 10, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 9, - "No. of tool users (2022-2023) (usegalaxy.eu)": 356, - "Total tool usage (usegalaxy.eu)": 29809 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 9, - "Tools available on UseGalaxy.no": 9, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 2, - "Total tool usage (usegalaxy.eu)": 171 - }, - { - "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/gsneha26/SegAlign", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.2", - "Conda id": "segalign-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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 21, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 12, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 17, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 11, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 12, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 15, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "Up-to-date", - "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": "1.4.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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.2.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 200, - "Total tool usage (usegalaxy.eu)": 5749 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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)": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 23, - "Tools available on UseGalaxy.no": 19, - "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": null, - "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.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 8, - "Total tool usage (usegalaxy.eu)": 43 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "iuc", - "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": "1.0.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 31, - "Total tool usage (usegalaxy.eu)": 763 - }, - { - "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.3", - "Conda id": "flye", - "Conda version": "2.9.4", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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": "0.0.12", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 6, - "No. of tool users (2022-2023) (usegalaxy.eu)": 76, - "Total tool usage (usegalaxy.eu)": 921 - }, - { - "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": "To update", - "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/bgruening/galaxytools/tree/master/tools/hifiasm", - "Galaxy wrapper version": "0.19.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 297, - "Total tool usage (usegalaxy.eu)": 1410 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.43", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 27, - "Tools available on UseGalaxy.no": 27, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "jbrowse2", - "bio.tool ids": [ - "jbrowse2" - ], - "biii": null, - "bio.tool name": null, - "bio.tool description": null, - "EDAM operation": [], - "EDAM topic": [], - "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.11.1", - "Conda id": "jbrowse2", - "Conda version": "2.12.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.520", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 135, - "Tools available on UseGalaxy.no": 134, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.3", - "Conda id": "galaxy-ml", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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+galaxy1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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": "1.9.2.3", - "Conda id": "locarna", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 6, - "Total tool usage (usegalaxy.eu)": 1074 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 21, - "Tools available on UseGalaxy.no": 21, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 1, - "Available on UseGalaxy.eu": 3, - "Available on UseGalaxy.fr": 1, - "Tools available on UseGalaxy.org (Main)": 2, - "Tools available on UseGalaxy.org.au": 1, - "Tools available on UseGalaxy.eu": 3, - "Tools available on UseGalaxy.fr": 1, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 31, - "Tools available on UseGalaxy.no": 27, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 19, - "Tools available on UseGalaxy.no": 19, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.5", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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.18", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.7", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.3", - "Conda id": "adapterremoval", - "Conda version": "2.3.3", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.6", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 19, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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": "To update", - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 1175, - "Total tool usage (usegalaxy.eu)": 25975 - }, - { - "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)": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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": null, - "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.6", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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": null, - "ToolShed categories": [ - "Sequence Analysis" - ], - "ToolShed id": "barrnap", - "Galaxy wrapper owner": "iuc", - "Galaxy wrapper source": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "To update", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "455", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.06", - "Conda id": "bbmap", - "Conda version": "39.06", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 7, - "No. of tool users (2022-2023) (usegalaxy.eu)": 87, - "Total tool usage (usegalaxy.eu)": 2895 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 37, - "Tools available on UseGalaxy.no": 37, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "To update", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.7", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "2.9", - "Conda id": "bracken", - "Conda version": "2.9", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.38.3", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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/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)": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.5.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 8, - "Total tool usage (usegalaxy.eu)": 1393 - }, - { - "Galaxy wrapper id": "cami_amber", - "Galaxy tool ids": [ - "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.4", - "Conda id": "cami-amber", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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.18.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 11, - "Tools available on UseGalaxy.no": 11, - "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": "Up-to-date", - "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.4", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "0.1.12", - "Conda id": "clair3", - "Conda version": "1.0.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 651, - "Total tool usage (usegalaxy.eu)": 46793 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.0.4", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 17, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 5, - "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": "To update", - "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.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 10, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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": null, - "bio.tool description": null, - "EDAM operation": [], - "EDAM topic": [], - "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)": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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": "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/galaxyproject/tools-iuc/tree/master/tools/diffbind", - "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/diffbind", - "Galaxy wrapper version": "2.10.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.3.5", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 126, - "Total tool usage (usegalaxy.eu)": 3934 - }, - { - "Galaxy wrapper id": "ebi_tools", - "Galaxy tool ids": [ - "ebi_metagenomics_run_downloader", - "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.0", - "Conda id": "six", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "No. of tool users (2022-2023) (usegalaxy.eu)": 89, - "Total tool usage (usegalaxy.eu)": 2432 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 107, - "Tools available on UseGalaxy.no": 107, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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)": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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+galaxy0", - "Conda id": "falco", - "Conda version": "1.2.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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+galaxy0", - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "bio.tool description": null, - "EDAM operation": [], - "EDAM topic": [], - "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)": [], - "EDAM topic (no superclasses)": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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": 0, - "Tools available on CorGAT": 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.helmholtz-muenchen.de/en/ige/service/software-download/genehunter-modscore/index.html", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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", - "Conda id": "genomescope2", - "Conda version": "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "No. of tool users (2022-2023) (usegalaxy.eu)": 432, - "Total tool usage (usegalaxy.eu)": 9277 - }, - { - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "447", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": [ - "heinz", - "bionet" - ], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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_hictadclassifier", - "hicexplorer_hictraintadclassifier", - "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": "To update", - "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.2", - "Conda id": "hicexplorer", - "Conda version": "3.7.4", - "EDAM operation (no superclasses)": [], - "EDAM topic (no superclasses)": [], - "Available on UseGalaxy.org (Main)": 0, - "Available on UseGalaxy.org.au": 5, - "Available on UseGalaxy.eu": 40, - "Available on UseGalaxy.fr": 4, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 5, - "Tools available on UseGalaxy.eu": 40, - "Tools available on UseGalaxy.fr": 4, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 36, - "Tools available on UseGalaxy.no": 33, - "No. of tool users (2022-2023) (usegalaxy.eu)": 1085, - "Total tool usage (usegalaxy.eu)": 66005 - }, - { - "Galaxy wrapper id": "hicstuff", - "Galaxy tool ids": [ - "hicstuff_pipeline" - ], - "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/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 0, - "Total tool usage (usegalaxy.eu)": 0 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 12, - "Tools available on UseGalaxy.no": 12, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 12, - "Available on UseGalaxy.eu": 13, - "Available on UseGalaxy.fr": 13, - "Tools available on UseGalaxy.org (Main)": 6, - "Tools available on UseGalaxy.org.au": 12, - "Tools available on UseGalaxy.eu": 13, - "Tools available on UseGalaxy.fr": 13, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 13, - "Tools available on UseGalaxy.no": 13, - "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.1.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 17, - "Tools available on UseGalaxy.no": 12, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 12, - "Total tool usage (usegalaxy.eu)": 1506 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 1, - "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 CorGAT": 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": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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.4", - "Conda id": "iqtree", - "Conda version": "2.3.4", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.50.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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": "2.3.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.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": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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)": 1, - "Available on UseGalaxy.org.au": 6, - "Available on UseGalaxy.eu": 6, - "Available on UseGalaxy.fr": 6, - "Tools available on UseGalaxy.org (Main)": 1, - "Tools available on UseGalaxy.org.au": 6, - "Tools available on UseGalaxy.eu": 6, - "Tools available on UseGalaxy.fr": 6, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "1548", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "0.99.12", - "Conda id": "maaslin2", - "Conda version": "1.16.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 9, - "Tools available on UseGalaxy.no": 9, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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": 0, - "Tools available on CorGAT": 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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": 1, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 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.4.1", - "Conda id": "meme", - "Conda version": "5.5.5", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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.0.6", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 129, - "Tools available on UseGalaxy.no": 129, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.22.3", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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.42.0", - "Conda id": "nanoplot", - "Conda version": "1.42.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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.1", - "Conda id": "entrez-direct", - "Conda version": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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.0", - "Conda id": "ncbi-fcs-gx", - "Conda version": "0.5.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 10, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 17, - "Tools available on UseGalaxy.no": 17, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.13.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "ToolShed categories": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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_samtofastq", - "picard_replacesamheader", - "picard_fastqtosam" - ], - "biii": null, - "bio.tool name": "picard_samtofastq", - "bio.tool description": "Create a FASTQ file.", - "EDAM operation": [ - "Formatting" - ], - "EDAM topic": [ - "Sequencing" - ], - "Status": "Up-to-date", - "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.1.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 29, - "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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 31, - "Tools available on UseGalaxy.no": 31, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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": "To update", - "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.1", - "Conda id": "picrust2", - "Conda version": "2.5.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "PLINK is a free, open-source 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 13, - "Tools available on UseGalaxy.no": 13, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.5", - "Conda id": "prot-scriber", - "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": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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": null, - "bio.tool description": null, - "EDAM operation": [], - "EDAM topic": [], - "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)": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 31, - "Tools available on UseGalaxy.no": 31, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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": "To update", - "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.2.2d", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "0.8.0", - "Conda id": "rasusa", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.0", - "Conda id": "recentrifuge", - "Conda version": "1.14.0", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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": 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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.2.3", - "Conda id": "rnaquast", - "Conda version": "2.2.3", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 22, - "Tools available on UseGalaxy.no": 22, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 16, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 16, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 16, - "Tools available on UseGalaxy.no": 16, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 3, - "Available on UseGalaxy.fr": 2, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 2, - "Tools available on UseGalaxy.eu": 3, - "Tools available on UseGalaxy.fr": 2, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 14, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.5.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.3.3", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 533, - "Total tool usage (usegalaxy.eu)": 760352 - }, - { - "Galaxy wrapper id": "snpfreqplot", - "Galaxy tool ids": [ - "snpfreqplot" - ], - "Description": "Generates a heatmap of allele frequencies grouped by variant type for SARS-CoV-2 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/galaxyproject/tools-iuc/tree/master/tools/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": [ - "rnaspades", - "spades", - "biosyntheticspades", - "metaspades", - "rnaviralspades", - "plasmidspades", - "coronaspades", - "metaviralspades", - "metaplasmidspades" - ], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 9, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "No. of tool users (2022-2023) (usegalaxy.eu)": 34, - "Total tool usage (usegalaxy.eu)": 446 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 13, - "Tools available on UseGalaxy.no": 13, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 12, - "Tools available on UseGalaxy.no": 12, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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": 2, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "ToolShed categories": [ - "Sequence Analysis" - ], - "ToolShed id": "tasmanian_mismatch", - "Galaxy wrapper owner": "iuc", - "Galaxy wrapper source": "https://github.com/nebiolabs/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.2.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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.8.5.0", - "Conda id": "tooldistillator", - "Conda version": "0.8.5.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.3", - "Conda id": "tracegroomer", - "Conda version": "0.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "Up-to-date", - "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.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 13, - "Tools available on UseGalaxy.no": 12, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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": "466", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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": "377", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 22, - "Total tool usage (usegalaxy.eu)": 285 - }, - { - "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": "455", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 48, - "Total tool usage (usegalaxy.eu)": 502 - }, - { - "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": "Up-to-date", - "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": "447", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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.0", - "Conda id": "unicycler", - "Conda version": "0.5.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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" - ], - "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" - ], - "Available on UseGalaxy.org (Main)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 2, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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.0+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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "bio.tool description": null, - "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", - "Conda id": "virheat", - "Conda version": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.15.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 2, - "Available on UseGalaxy.eu": 4, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 4, - "Tools available on UseGalaxy.org.au": 2, - "Tools available on UseGalaxy.eu": 4, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.15.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "To update", - "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": "2.10.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 11, - "Tools available on UseGalaxy.no": 9, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 17, - "Total tool usage (usegalaxy.eu)": 645 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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": "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": "2.255.0", - "Conda id": "morpheus", - "Conda version": "288", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 141, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 8, - "Tools available on UseGalaxy.org.au": 34, - "Tools available on UseGalaxy.eu": 141, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 141, - "Tools available on UseGalaxy.no": 124, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 4, - "Available on UseGalaxy.eu": 6, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 4, - "Tools available on UseGalaxy.eu": 6, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.2.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 25, - "Total tool usage (usegalaxy.eu)": 86 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 15, - "Tools available on UseGalaxy.no": 9, - "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": 1, - "Available on UseGalaxy.eu": 10, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 10, - "Tools available on UseGalaxy.org.au": 1, - "Tools available on UseGalaxy.eu": 10, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 10, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "448", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "466", - "EDAM operation (no superclasses)": [], - "EDAM topic (no superclasses)": [], - "Available on UseGalaxy.org (Main)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.5.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "0.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": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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" - ], - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 7, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 264, - "Total tool usage (usegalaxy.eu)": 3266 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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)": 22, - "Available on UseGalaxy.org.au": 27, - "Available on UseGalaxy.eu": 27, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 22, - "Tools available on UseGalaxy.org.au": 27, - "Tools available on UseGalaxy.eu": 27, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 14, - "Tools available on UseGalaxy.no": 13, - "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)": 0, - "Available on UseGalaxy.org.au": 1, - "Available on UseGalaxy.eu": 6, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 1, - "Tools available on UseGalaxy.eu": 6, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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)": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 14, - "Available on UseGalaxy.fr": 11, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 14, - "Tools available on UseGalaxy.fr": 11, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.25.0", - "Conda id": "matchms", - "Conda version": "0.26.4", - "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": 9, - "Available on UseGalaxy.eu": 14, - "Available on UseGalaxy.fr": 11, - "Tools available on UseGalaxy.org (Main)": 2, - "Tools available on UseGalaxy.org.au": 9, - "Tools available on UseGalaxy.eu": 14, - "Tools available on UseGalaxy.fr": 11, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 9, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 10, - "Total tool usage (usegalaxy.eu)": 187 - }, - { - "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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.26.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 2, - "Total tool usage (usegalaxy.eu)": 16 - }, - { - "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.12.0", - "Conda id": "r-recetox-aplcms", - "Conda version": "0.12.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 6, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 16, - "Tools available on UseGalaxy.no": 15, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 0, - "Total tool usage (usegalaxy.eu)": 0 - } -] diff --git a/results/all_tools.tsv b/results/all_tools.tsv deleted file mode 100644 index dd4f490f..00000000 --- a/results/all_tools.tsv +++ /dev/null @@ -1,1376 +0,0 @@ -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) -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 0 0 0 3 3 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -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 0 0 0 1 1 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 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 9 9 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 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 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 0 0 1 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 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 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 0 0 -batched_lastz batched_lastz Galaxy wrapper for the batching Lastz runs Up-to-date https://github.com/gsneha26/SegAlign 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 0 0 -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 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 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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 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 0 0 0 2 2 30 623 -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 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 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 1583 33934 -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 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 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 0 0 -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 0 0 -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 0 0 -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 0 0 0 1 1 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 0 0 20 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 7 7 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 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 0 0 1 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 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 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 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 0 0 0 1 1 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 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -influx_data_manager influx_data_manager Handling influx_si data inputs in Galaxy workflows Up-to-date 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.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 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 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 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 0 0 0 1 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 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.0b4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 -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 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 Up-to-date 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.32 Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 114 936 -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 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 0 0 -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 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 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 322 89021 -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 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 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 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 0 0 0 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 0 0 0 1 1 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 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 0 0 0 2 2 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 0 0 0 1 1 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 0 0 -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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 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 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 0 -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 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 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 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 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 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 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 0 0 -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 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 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 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 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 0 0 2 0 2 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 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 0 0 0 1 1 20 537 -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 0 0 -segalign segalign A Scalable GPU System for Pairwise Whole Genome Alignments based on LASTZ's seed-filter-extend paradigm. To update 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.2 segalign-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 0 0 -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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -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 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 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 0 0 0 1 1 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 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 0 0 -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 0 0 -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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 3 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 0 0 0 4 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 0 0 0 4 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 0 0 0 4 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 0 0 0 3 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 0 0 0 6 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 0 0 0 21 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 0 0 0 12 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 0 0 0 3 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 0 0 0 10 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 0 0 0 17 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 0 0 0 3 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 0 0 0 11 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 0 0 0 3 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 0 0 0 12 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 0 0 0 6 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 0 0 0 1 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 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 0 0 0 15 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 0 0 0 4 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 0 0 0 8 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 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 0 0 0 2 0 124 7087 -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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 1 3 2834 -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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 -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 To update https://github.com/sneumann/xcms Metabolomics xcms workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/ https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/xcms 3.12.0 bioconductor-xcms 4.0.0 9 9 10 10 9 9 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 0 0 0 10 9 356 29809 -10x_bamtofastq 10x_bamtofastq Converts 10x Genomics BAM to FASTQ Up-to-date 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.4.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 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 2 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 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 0 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 To update 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.2.0 agat 1.4.0 Data handling, Genome 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 0 0 0 1 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 0 0 0 1 1 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.11.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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 200 5749 -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 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 0 0 0 1 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 0 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 0 4 4 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 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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.8 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 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 0 0 0 23 19 178 4614 -cellprofiler_v4 cp_cellprofiler4 cellProfiler4 wrapper To update Imaging cellprofiler4 bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v4 4.2.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 0 0 0 1 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 0 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 0 1 1 931 10965 -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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 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 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 1 1 1 1 1 1 1 1 0 0 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 0 1 1 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 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 0 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 0 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 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 0 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 0 0 0 1 1 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 iuc https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 1.0.0 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 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 0 0 0 1 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 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 0 0 0 1 1 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 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 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 0 1 1 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 0 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 0 1 1 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.11.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 1 1 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 0 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 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 0 1 1 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 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.11.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 20 671 -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.3 flye 2.9.4 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 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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.11.0 1 1 1 1 1 1 1 1 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 0 0 0 0 0 0 1 1 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 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 0 1 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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 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.43 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 0 0 0 2 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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+galaxy1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 0 0 -hictk hictk Convert cooler to juicebox_hic To update 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 0.0.12 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 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 0 0 0 7 6 76 921 -hifiasm hifiasm A fast haplotype-resolved de novo assembler To update https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm 0.19.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 297 1410 -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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 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 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 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 0 0 0 27 27 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 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 0 0 0 1 1 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 0 0 0 6 6 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 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 0 0 0 1 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 0 0 0 1 1 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.11.0 1 1 1 1 1 1 1 1 0 0 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 0 1 1 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 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 0 0 0 1 0 38 868 -jbrowse2 jbrowse2 JBrowse2 Genome Browser integrated as a Galaxy Tool jbrowse2 jbrowse2 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.11.1 jbrowse2 2.12.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 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.11.0 1 1 1 1 1 1 1 1 0 0 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 0 1 1 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 To update 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 1.9.2.3 locarna 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.520 mafft 7.525 Multiple sequence alignment Sequence analysis 2 2 2 2 2 2 2 2 0 0 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 0 2 2 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 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.11.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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 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 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 5 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 0 0 0 1 1 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 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 0 4 4 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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 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 0 0 0 1 1 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 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 0 0 0 135 134 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 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 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 0 0 0 1 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 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 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 0 0 0 1 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.11.0 1 1 1 1 1 1 1 1 0 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 0 1 1 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 0 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 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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.3 galaxy-ml 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 6 6 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 0 0 0 1 1 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.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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 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 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 0 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 0 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 3 3 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 6 1074 -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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 6 6 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 -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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 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 0 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 0 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 0 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 31 27 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 0 0 0 1 1 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 0 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 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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.11.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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 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 0 0 0 1 1 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 0 0 19 1 19 0 0 19 0 0 0 20 0 0 0 0 0 0 0 0 19 19 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 0 0 0 1 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 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 0 0 0 1 1 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 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 1 1 1 0 1 1 1 0 0 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 0 1 1 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 0 0 0 1 1 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 0 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 0 1 1 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 0 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 0 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 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 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.5 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 0 0 0 1 1 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 1 1 1 1 1 1 1 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 1 1 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 0 0 0 1 1 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 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 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 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 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 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 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 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 21 21 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 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 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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.18 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 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 Up-to-date 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.7 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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.3 adapterremoval 2.3.3 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 0 0 0 1 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 0 1 0 1 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 4 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 0 0 0 1 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 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 0 0 0 1 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.6 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 0 0 0 19 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 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 0 0 0 1 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 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 -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 To update 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 Annotation 1 1 1 1 1 1 1 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 1 1 1175 25975 -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 -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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 123 8175 -assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. To update 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 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 -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 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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/main/tools/b2btools 3.0.5+galaxy0 b2btools 3.0.6 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 0 0 0 1 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 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 2 4 0 4 2 4 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 4 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 0 0 0 1 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 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 0 2 2 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 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 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 -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 Sequence Analysis barrnap iuc 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 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 1 0 160 3938 -basil basil Breakpoint detection, including large insertions To update 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 0 1 0 1 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 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 455 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 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.06 bbmap 39.06 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 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 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 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 0 0 0 7 7 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 0 0 0 3 0 0 28 -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 0 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 1 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 0 0 0 1 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 0 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 0 37 37 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 0 0 0 1 0 123 1194 -berokka berokka Berokka is used to trim, circularise, orient & filter long read bacterial genome assemblies. To update 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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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! Up-to-date 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.7 2 0 2 0 2 0 2 0 0 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 0 2 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 1 1 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 0 0 -biscot biscot Bionano scaffolding correction tool To update 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 0 1 0 78 511 -blastxml_to_gapped_gff3 blastxml_to_gapped_gff3 BlastXML to gapped GFF3 To update 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 Read mapping Mapping, Genomics, Mapping 1 1 1 1 1 1 1 1 1 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 1 0 0 0 0 0 1 1 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 2.9 bracken 2.9 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.38.3 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 50 1871 -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 -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 To update 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.5.0 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 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 0 0 8 1393 -cami_amber 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.4 cami-amber 2.0.4 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 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 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 0 1 1 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 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 -charts charts Enables advanced visualization options in Galaxy Charts To update 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 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.2 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 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 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 0 0 0 2 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.6 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 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 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 -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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 1 11 0 0 0 0 0 0 11 0 0 0 0 0 0 0 0 11 11 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 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 -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 0.1.12 clair3 1.0.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 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 0 1 1 651 46793 -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 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.0.4 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 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 0 0 0 17 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 0 0 0 1 1 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 0 0 0 3 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 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 0 0 0 1 1 18 251 -collection_column_join collection_column_join Column Join on Collections To update 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1483 20857 -collection_element_identifiers collection_element_identifiers Extract element identifiers of a collection To update 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 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 912 5059 -column_maker Add_a_column1 Compute an expression on every row To update 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.0 python 1 1 1 1 1 1 1 1 0 0 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 0 1 1 2379 3883271 -column_order_header_sort column_order_header_sort Sort Column Order by heading To update 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 0 0 0 1 1 80 3258 -column_remove_by_header column_remove_by_header Remove columns by header To update 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 0 0 0 1 1 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 0 0 0 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 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 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 0 0 0 1 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 0 0 0 5 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 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 6 5 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 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 -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 -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 -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 -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 -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 -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 To update 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.8 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 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 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 0 0 0 1 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 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 0 0 10 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 10 10 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 0 0 0 2 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 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 0 0 1 0 3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3066 739298 -decontaminator decontaminator Deep Learning method for novel virus detection in sequencing data decontaminator decontaminator 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 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 0 0 0 1 0 182 1889 -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 -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 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 6 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 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 -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 -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 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 0 3 3 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 To update 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 2.10.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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 To update 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.3.5 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 0 0 0 5 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 126 3934 -ebi_tools ebi_metagenomics_run_downloader, 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.0 six 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 89 2432 -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 -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 -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 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 0 107 107 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 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 0 0 0 1 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 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 0 0 0 3 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.11.0 1 0 1 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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+galaxy0 falco 1.2.2 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 Up-to-date 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 377 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 0 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 0 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 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 0 1 1 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 0 0 0 1 1 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 1 1 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 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 0 1 1 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 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 0 1 1 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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+galaxy0 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 1 0 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 1 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 1 1 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 0 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 0 1 1 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 1 0 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 0 1 1 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 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 0 1 1 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 0 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 0 1 1 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 1 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 0 0 0 1 1 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 1 0 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 0 1 1 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 1 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 0 0 0 1 1 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 1 0 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 0 1 1 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 1 0 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 0 1 1 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 1 0 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 0 1 1 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 0 0 0 1 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 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 -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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 1 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 0 0 2 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 0 2 2 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 44 665 -freyja freyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variants lineage abundances estimation freyja freyja 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 2 0 4 0 2 0 4 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 0 0 0 0 0 0 0 4 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 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 0 0 0 5 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 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 2 2 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 0 1 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 1 0 0 1 1 1 4 -genehunter_modscore genehunter_modscore Maximised LOD score pedigree analysis utility To update https://www.helmholtz-muenchen.de/en/ige/service/software-download/genehunter-modscore/index.html 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 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 0 0 0 1 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 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 genomescope2 2.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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.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 1 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 0 0 0 2 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 0 0 1 0 5 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 5 5 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 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 0 0 0 4 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 5 5 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 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 432 9277 -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 0 0 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 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 447 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 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 145 3340 -gvcftools gvcftools_extract_variants 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 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 0 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 -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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 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 0 0 0 1 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 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 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1953 44240 -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 -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 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_hictadclassifier, hicexplorer_hictraintadclassifier, hicexplorer_hictransform, hicexplorer_hicvalidatelocations HiCExplorer: Set of programs to process, analyze and visualize Hi-C data. To update 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.2 hicexplorer 3.7.4 0 5 40 4 0 5 40 4 0 0 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 0 36 33 1085 66005 -hicstuff hicstuff_pipeline 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 0 0 -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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 0 12 12 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 5 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 0 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 0 1 1 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 12 13 13 6 12 13 13 0 0 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 0 13 13 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.1.8 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 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 0 0 2 0 0 0 0 0 0 0 0 17 12 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 0 0 0 1 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 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 0 0 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 1 1 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 0 0 0 1 1 12 1506 -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 0 0 0 2 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 58 52965 -intermine_galaxy_exchange galaxy_intermine_exchange InterMine Exporter To update 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 0 0 0 1 1 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 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 1 1 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.11.0 Sequence analysis 1 1 1 1 1 1 1 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 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 0 0 0 2 2 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.4 iqtree 2.3.4 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 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 5 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 5 5 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 0 0 0 3 3 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 0 0 0 1 1 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 0 0 2 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 91 1138 -join_files_by_id join_files_by_id This tool will join datasets according to a column with identifier To update 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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.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 -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 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 8 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 0 0 0 1 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 Up-to-date 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 2.3.2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 38 319 -kma kma_map Map with KMA Up-to-date 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.14 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 -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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 5 5 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 1 6 6 6 1 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 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 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 1548 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 0 0 0 5 5 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 0 0 2 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 0 0 0 1 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 5 5 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 0 0 0 1 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 0 0 0 2 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 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 0.99.12 maaslin2 1.16.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 0 0 0 1 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 0 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 0 9 9 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 0 1 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 1 0 0 1 1 3 21 -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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 0 1 1 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 0 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 3 3 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 1 0 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 1 0 0 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 0 7 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.4.1 meme 5.5.5 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 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 0 4 4 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 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 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 To update 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.0.6 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 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 0 0 0 2 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 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 0 129 129 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 0 0 0 1 1 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/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 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 0 0 0 1 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.22.3 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 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 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 0 0 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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.42.0 nanoplot 1.42.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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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.1 entrez-direct 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 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 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 0 8 8 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.0 ncbi-fcs-gx 0.5.0 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 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 0 0 0 1 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 0 0 0 1 1 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.1 Operation 1 0 1 1 1 0 1 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 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 10 10 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 0 0 0 17 17 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 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 0 0 0 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 To update 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.13.1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 4 4 0 0 4 4 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 0 0 0 3 3 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 0 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 0 1 1 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_samtofastq, picard_replacesamheader, picard_fastqtosam picard_samtofastq Create a FASTQ file. Formatting Sequencing Up-to-date 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.1.1 Formatting Sequencing 31 31 31 31 31 31 31 31 0 0 0 29 0 0 31 0 0 0 0 0 0 0 29 4 31 0 0 31 0 0 0 31 0 0 0 0 0 0 0 0 31 31 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 0 0 0 1 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 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 To update 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.1 picrust2 2.5.2 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 0 0 0 7 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 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 8 22 -plink plink PLINK is a free, open-source 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 0 0 0 1 1 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 0 1 1 0 0 1 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 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 13 13 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 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 0 0 -progressivemauve progressivemauve, xmfa2gff3 Mauve/ProgressiveMauve Multiple Sequence Aligner To update 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 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 0 2 2 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 1 0 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 0 1 1 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.5 prot-scriber 0.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 0 0 0 1 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 Up-to-date 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.1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 200 3320 -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 -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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.0 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 2 2 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 0 0 31 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 31 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 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 0 0 -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 -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 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 0 1 1 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 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 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.0 python 3 3 3 1 3 3 3 1 0 0 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 0 3 3 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 0 0 0 1 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 0 0 0 5 5 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 0 1 1 0 0 1 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 1 1 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 0 1 1 1 0 1 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 1 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 0.8.0 rasusa 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 1 1 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 0 0 0 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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.0 recentrifuge 1.14.0 Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 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 0 0 0 1 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 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 -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 -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.2.3 rnaquast 2.2.3 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 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 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 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 0 0 0 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 0 22 22 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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/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 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 0 0 0 6 6 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 0 0 0 5 5 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 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 -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 -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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 6 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 3 2 0 2 3 2 0 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 0 3 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 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 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 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 0 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 1 0 0 1 1 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 0 0 0 4 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 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 1 1 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 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 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 0 0 0 2 2 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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.5.3 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 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.3.3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 3 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 5 5 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 5 5 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 533 760352 -snpfreqplot snpfreqplot Generates a heatmap of allele frequencies grouped by variant type for SARS-CoV-2 data To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 8 0 0 0 0 0 8 0 0 8 0 0 0 8 0 0 0 0 0 0 0 0 8 8 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 rnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspades 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 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 0 9 3 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 34 446 -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 0 0 0 1 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 0 0 0 1 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 0 0 2 0 3 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 13 13 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 0 0 0 12 12 238 7292 -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 -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 0 0 -strelka strelka_germline, strelka_somatic 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 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 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 0 0 0 1 1 59 2623 -structureharvester structureharvester for parsing STRUCTURE outputs and for performing the Evanno method Up-to-date 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 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 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 0 0 0 1 0 2 30 -table_compute table_compute Perform general-purpose table operations To update 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 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 7 164 -tasmanian_mismatch tasmanian_mismatch Analysis of positional mismatches Up-to-date Sequence Analysis tasmanian_mismatch iuc https://github.com/nebiolabs/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 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 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 Up-to-date 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.2.1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 4 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.8.5.0 tooldistillator 0.8.5.0 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 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.3 tracegroomer 0.1.3 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 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 0 0 0 4 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 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 -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 0 0 0 5 5 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 0 0 0 1 1 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 0 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 0 1 1 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 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 -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 -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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 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 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 0 0 0 1 1 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 455 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 88 1408 -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/main/tools/ucsc_blat 377 ucsc-blat 466 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 0 0 1 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 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 5 5 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.0 unicycler 0.5.0 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 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 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 0 0 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 1 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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 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 -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 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 0 0 2 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 1 0 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 0 1 1 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 0 0 0 1 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 0 0 0 3 3 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.0+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 0 0 -virheat virheat generates a heatmap of allele frequencies from vcf files virheat virheat 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 virheat 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 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 8 8 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 8 8 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 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 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 0 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 0 1 1 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 Up-to-date 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 447 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 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.15.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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 2 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 0 0 0 5 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 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 0 0 0 5 4 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 0 0 0 1 1 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 0 0 0 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 5 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 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 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 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 0 0 0 3 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 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 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 0 0 0 1 1 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 448 0 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 1 1 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 466 0 0 0 0 0 0 0 0 0 0 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 0 0 0 4 3 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 0 0 0 1 1 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 0 0 0 5 5 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 To update 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 2.10.0 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 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 11 9 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 0 0 0 2 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 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 0 0 0 1 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 0 0 0 3 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 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 0 0 0 1 1 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 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 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 4 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.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 -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 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 6 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 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 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 0 0 0 1 1 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 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 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 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 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 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 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 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 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 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 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 -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 0 0 3 0 0 0 3 1 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 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 0 0 0 7 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 0 0 0 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 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 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 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 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 0 0 0 1 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 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 0 0 0 1 1 17 645 -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 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 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 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 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 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 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 8 8 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 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 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 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 0 0 0 1 1 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 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 9 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 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 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 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 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 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 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 -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 -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 0 0 0 1 1 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 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 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 0 0 0 2 2 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 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 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 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 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 0 0 0 1 1 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 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 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 0 1 1 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 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 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 0 0 2 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 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 To update 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.25.0 matchms 0.26.4 Spectral library search, Format validation, Filtering Metabolomics 2 9 14 11 2 9 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 0 0 0 9 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 1 10 0 10 1 10 0 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 0 0 0 10 10 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 6 6 104 2522 -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 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 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 1 1 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 0 0 264 3266 -morpheus morpheus Morpheus MS Search Application To update Proteomics morpheus galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus 2.255.0 morpheus 288 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 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 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.26.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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 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 6 0 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 0 16 15 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 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 0 0 0 1 0 4 45 -ocean argo_getdata 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 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 0 0 0 1 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 141 0 8 34 141 0 0 0 0 0 0 0 0 0 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 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 3 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 0 0 0 1 1 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 0 0 0 4 2 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 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 0 0 0 4 4 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 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 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 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 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 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 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 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 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 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 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 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 0 0 0 1 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 0 0 0 1 1 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 4 6 0 0 4 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 33 2509 -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.2 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 0 0 0 1 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 0 0 0 1 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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.2.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 0 0 0 1 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 0 0 0 2 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 0 0 0 1 1 14 175 -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.12.0 r-recetox-aplcms 0.12.0 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 0 0 0 8 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 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 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 0 0 0 1 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 0 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 0 2 2 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 0 0 0 7 7 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 2 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 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 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 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 0 0 0 1 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 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 0 0 0 1 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 0 0 0 1 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 0 0 4 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 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 -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 -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 -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 -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 -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 -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 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 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 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 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 -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 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 0 0 0 1 1 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 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 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 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 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 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 0 1 1 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 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 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 0 0 0 7 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 0 0 0 5 5 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 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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.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 -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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 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 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 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 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 0 0 0 4 4 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 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 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 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 1 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 0 0 0 6 2 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 0 0 0 1 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 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 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 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 0 0 1 1 0 0 0 0 0 0 1 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 0 0 diff --git a/results/all_tools_wordcloud.png b/results/all_tools_wordcloud.png deleted file mode 100644 index 87111c64..00000000 Binary files a/results/all_tools_wordcloud.png and /dev/null differ diff --git a/results/all_tutorials.json b/results/all_tutorials.json deleted file mode 100644 index 08a0f348..00000000 --- a/results/all_tutorials.json +++ /dev/null @@ -1,124594 +0,0 @@ -[ - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533184, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "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": 4.117647058823529, - "feedback_number": 34, - "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-05-29", - "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": 5576722, - "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": 377, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 254, - "visitors": 2006732 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-02-13", - "objectives": [ - "Learn about different options about Galaxy deployment.", - "Make an educated decision about your preferred deployment model." - ], - "pageviews": 5533184, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183, - "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/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": 4.5, - "feedback_number": 2, - "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-05-31", - "objectives": [ - "Setup Galaxy with both the Hierarachical and Distributed Object Storages" - ], - "pageviews": 5535131, - "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": 49, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 245, - "visitors": 1985384 - }, - { - "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": 5.0, - "feedback_number": 1, - "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": "2023-07-13", - "objectives": [ - "Learn about different maintenance steps", - "Setup postgres backups", - "Setup cleanups", - "Learn what to back up and how to recover" - ], - "pageviews": 5533613, - "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": 22, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 870, - "visitors": 1984492 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533184, - "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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183, - "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/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": 4.3, - "feedback_number": 20, - "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-05-29", - "objectives": [ - "Learn Ansible basics", - "Write a simple role", - "Install a role from Ansible Galaxy (repository unrelated to the Galaxy Project)" - ], - "pageviews": 5543509, - "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": 105, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 250, - "visitors": 1989674, - "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/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-02-14", - "pageviews": 5533184, - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.733333333333333, - "feedback_number": 15, - "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-05-31", - "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": 5539064, - "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": 142, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 355, - "visitors": 1987381 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533184, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183, - "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-01-31", - "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": 2712376, - "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": 59, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 234, - "visitors": 1128703, - "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/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-03-29", - "pageviews": 5533184, - "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": 11, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-14", - "pageviews": 5533184, - "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": 8, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533184, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-13", - "pageviews": 5533184, - "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": 11, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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", - "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" - } - ], - "dir": "topics/admin/tutorials/interactive-tools", - "edam_operation": [], - "edam_topic": [], - "feedback_mean_note": 3.0, - "feedback_number": 1, - "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-05-29", - "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": 5535995, - "pub_date": "2020-02-27", - "questions": null, - "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": 43, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 313, - "visitors": 1985970, - "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": 4.111111111111111, - "feedback_number": 9, - "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-05-29", - "objectives": [ - "Setup a data library", - "Manage permissions", - "Import data from disk" - ], - "pageviews": 5466684, - "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": 73, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 284, - "visitors": 1964180 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 7, - "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-05-29", - "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": 5536690, - "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": 171, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 334, - "visitors": 1986212 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 17, - "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-05-31", - "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": 5535736, - "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": 97, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 348, - "visitors": 1985821, - "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/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": 5534215, - "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": 22, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 200, - "visitors": 1984814 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-05-31", - "objectives": [ - "Learn the Galaxy user/group management and assign Quotas.", - "Understand the Role Based Access Control (RBAC) of Galaxy." - ], - "pageviews": 5533186, - "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": 28, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183, - "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/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": 5533186, - "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": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.384615384615385, - "feedback_number": 13, - "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-05-29", - "objectives": [ - "Learn about Ephemeris", - "Extract a list of tools from a workflow", - "Install these tools on a given Galaxy" - ], - "pageviews": 5535138, - "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": 62, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 383, - "visitors": 1985488 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533187, - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "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": 4.25, - "feedback_number": 4, - "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-05-31", - "objectives": [ - "Setup InfluxDB", - "Setup Telegraf", - "Setup Grafana", - "Create several charts" - ], - "pageviews": 5538232, - "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": 111, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 203, - "visitors": 1986815 - }, - { - "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": [ - "Genome indexing", - "Sequence alignment", - "Generation", - "Read mapping" - ], - "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-20", - "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": 5533607, - "pub_date": "2019-01-28", - "questions": null, - "requirements": [ - { - "topic_name": "admin", - "tutorials": [ - "ansible", - "ansible-galaxy" - ], - "type": "internal" - } - ], - "short_id": "T00329", - "short_tools": [ - "data_manager_fetch_genome_all_fasta_dbkey", - "bwa_mem_index_builder_data_manager", - "bwa" - ], - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 448, - "visitors": 1984501, - "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/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": 5533187, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.666666666666667, - "feedback_number": 3, - "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-05-31", - "objectives": [ - "Learn gxadmin basics", - "See some queries and learn how they help debug production issues" - ], - "pageviews": 5534349, - "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": 43, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 316, - "visitors": 1984877, - "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/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": "2022-12-09", - "objectives": [ - "Setup a wireguard mesh across a few nodes" - ], - "pageviews": 1070, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 23, - "visitors": 918, - "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-27", - "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": 685, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 35, - "visitors": 597 - }, - { - "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": 5.0, - "feedback_number": 1, - "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": 16121, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 39, - "visitors": 8079 - }, - { - "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": 5.0, - "feedback_number": 1, - "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-05-29", - "objectives": [ - "Setup TIaaS", - "Request and manage trainings", - "Join a training" - ], - "pageviews": 592, - "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": 103, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 212, - "visitors": 429, - "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": 5.0, - "feedback_number": 1, - "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-05-29", - "objectives": [ - "Setup TUSd", - "Configure Galaxy to use it to process uploads" - ], - "pageviews": 1002, - "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": 43, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 334, - "visitors": 662, - "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/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-20", - "objectives": [ - "Deploy a Beacon" - ], - "pageviews": 92, - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 210, - "visitors": 80, - "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-05-29", - "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": 856, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 171, - "visitors": 516, - "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-21", - "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": 416, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 137, - "visitors": 293, - "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/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-06", - "objectives": [ - "Have an understanding of Sentry", - "Install Sentry", - "Configure Galaxy and Pulsar to send errors to Sentry", - "Monitor performance with Sentry" - ], - "pageviews": 165, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 100, - "visitors": 129, - "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-03", - "objectives": [ - "Learn some of the design concepts of the Galaxy database", - "Extract information from the Galaxy database", - "Get to know SchemaSpy" - ], - "pageviews": 4587, - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 64, - "visitors": 2698, - "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": 5.0, - "feedback_number": 14, - "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-05-29", - "objectives": [ - "Configure your Galaxy to use Apptainer and BioContainers for running jobs" - ], - "pageviews": 818, - "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": 34, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 154, - "visitors": 626, - "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-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-15", - "objectives": [ - "Set a brand text for your Galaxy instance", - "Add a custom welcome page to Galaxy", - "Activate and customize themes" - ], - "pageviews": 86, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 243, - "visitors": 71 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "2022-12-14", - "objectives": [ - "Setup a tailnet across a few nodes" - ], - "pageviews": 2580, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 29, - "visitors": 1910, - "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/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": 5.0, - "feedback_number": 3, - "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-01-31", - "objectives": [ - "Setup and start the Galaxy reports app." - ], - "pageviews": 552, - "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": 78, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 181, - "visitors": 411, - "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": 5.0, - "feedback_number": 1, - "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": 811, - "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": 11, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 142, - "visitors": 528 - }, - { - "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": 4.0, - "feedback_number": 1, - "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-01-31", - "objectives": [ - "Configure galaxy and install a FTP server.", - "Use an Ansible playbook for this." - ], - "pageviews": 1401, - "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": 65, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 101, - "visitors": 977, - "zenodo_link": "" - }, - { - "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": 4.636363636363637, - "feedback_number": 11, - "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-05-29", - "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": 2156, - "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": 124, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 190, - "visitors": 1297 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 1, - "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-01-31", - "objectives": [ - "Set a brand text for your Galaxy instance", - "Add a custom welcome page to Galaxy", - "Activate and customize themes" - ], - "pageviews": 382, - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 381, - "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/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": 5.0, - "feedback_number": 1, - "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": "2022-10-18", - "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": 2247, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 147, - "visitors": 1266 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.666666666666667, - "feedback_number": 9, - "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": 5561848, - "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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 206, - "visitors": 1999129, - "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/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-23", - "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": 1560813, - "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": 8, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 142, - "visitors": 680042 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-23", - "objectives": [ - "Get to know how to contribute with models to the BioImage.IO" - ], - "pageviews": 1425041, - "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": 4, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 142, - "visitors": 618650 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 1457417, - "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": 5, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 142, - "visitors": 632995 - }, - { - "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": [ - "De-novo assembly", - "Sequence composition calculation", - "Validation", - "Sequencing quality control", - "Visualisation", - "Sequence assembly validation", - "Formatting", - "Statistical calculation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "Galaxy@AuBi", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.333333333333333, - "feedback_number": 30, - "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-05-29", - "objectives": [ - "assemble some paired end reads using Velvet", - "examine the output of the assembly." - ], - "pageviews": 5579092, - "pub_date": "2017-05-23", - "questions": [ - "How do we perform a very basic genome assembly from short read data?" - ], - "short_id": "T00034", - "short_tools": [ - "fastq_paired_end_interlacer", - "velveth", - "quast", - "multiqc", - "fastqc", - "velvetg" - ], - "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": 48, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 316, - "visitors": 2010659, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Intro to Genome Assembly", - "path": "topics/assembly/tutorials/general-introduction/workflows/assembly-general-introduction.ga", - "test_results": null, - "tests": true, - "title": "Intro to Genome Assembly", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-general-introduction/versions/assembly-general-introduction", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/general-introduction/workflows/assembly-general-introduction.ga", - "wfid": "assembly-general-introduction", - "wfname": "assembly-general-introduction", - "workflow": "assembly-general-introduction.ga" - } - ], - "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": "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", - "Read mapping", - "Sequence visualisation", - "Mapping" - ], - "edam_topic": [ - "Sequence assembly", - "Genomics", - "Microbiology" - ], - "exact_supported_servers": [], - "feedback_mean_note": 2.0, - "feedback_number": 1, - "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-03-11", - "objectives": [ - "Identification of the most closely related genome to my new assembly", - "Perform sequence comparison to locate rearrangements", - "Identify genes located in deletions" - ], - "pageviews": 11935, - "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": [ - "Cut1", - "tp_replace_in_line", - "mergeCols1", - "tp_replace_in_column", - "fasta_filter_by_length", - "Grep1", - "cat1", - "circos_aln_to_links", - "jbrowse", - "fasta_compute_length", - "collapse_dataset", - "random_lines1", - "bedtools_sortbed", - "lastz_wrapper_2", - "addValue", - "circos", - "join1", - "Filter1", - "bedtools_intersectbed", - "bedtools_complementbed", - "upload1", - "tp_sed_tool", - "tp_cat", - "datamash_ops", - "tp_sort_header_tool", - "circos_interval_to_tiles", - "tp_grep_tool" - ], - "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": 86, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 182, - "visitors": 5828, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Ecoli Comparison", - "path": "topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.ga", - "test_results": null, - "tests": false, - "title": "Ecoli Comparison", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-ecoli_comparison/versions/ecoli-comparison", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.ga", - "wfid": "assembly-ecoli_comparison", - "wfname": "ecoli-comparison", - "workflow": "ecoli-comparison.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3382053" - }, - { - "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": [ - "Sequence composition calculation", - "Genome assembly", - "Visualisation", - "Primer removal", - "Sequence assembly visualisation", - "Sequence file editing", - "Read mapping", - "Statistical calculation", - "Data handling", - "Sequence contamination filtering", - "Local alignment", - "Sequence alignment analysis", - "Variant calling", - "Sequencing quality control", - "Read pre-processing", - "Sequence assembly validation", - "Formatting", - "Sequence trimming" - ], - "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-06-24", - "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": 1, - "pub_date": "2024-06-24", - "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": [ - "filter_tabular", - "bandage_image", - "metaspades", - "megahit", - "quast", - "cutadapt", - "tp_cat", - "ngsutils_bam_filter", - "megahit_contig2fastg", - "random_lines1", - "bamtools", - "bowtie2", - "bandage_info", - "collection_column_join", - "coverm_contig", - "seqtk_subseq", - "fastqc", - "bg_uniq" - ], - "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": 0, - "video_view": 0, - "visit_duration": 0, - "visitors": 1, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Metagenomics assembly tutorial workflow", - "path": "topics/assembly/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", - "test_results": null, - "tests": false, - "title": "Metagenomics assembly tutorial workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-metagenomics-assembly/versions/metagenomics_assembly_tutorial_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", - "wfid": "assembly-metagenomics-assembly", - "wfname": "metagenomics_assembly_tutorial_workflow", - "workflow": "metagenomics_assembly_tutorial_workflow.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "workflow-generate-dataset-for-assembly-tutorial", - "path": "topics/assembly/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", - "test_results": null, - "tests": false, - "title": "workflow-generate-dataset-for-assembly-tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-metagenomics-assembly/versions/workflow-generate-dataset-for-assembly-tutorial", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", - "wfid": "assembly-metagenomics-assembly", - "wfname": "workflow-generate-dataset-for-assembly-tutorial", - "workflow": "workflow-generate-dataset-for-assembly-tutorial.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7818827" - }, - { - "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": [ - "Optimisation and refinement", - "Genome assembly", - "Sequence assembly" - ], - "edam_topic": [], - "exact_supported_servers": [ - "Galaxy@AuBi", - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 3.5, - "feedback_number": 6, - "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": 5541232, - "pub_date": "2017-05-24", - "questions": [ - "What are the factors that affect genome assembly?", - "How does Genome assembly work?" - ], - "short_id": "T00031", - "short_tools": [ - "spades", - "velvetoptimiser", - "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": 51, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 301, - "visitors": 1989081, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Debruijn Graph", - "path": "topics/assembly/tutorials/debruijn-graph-assembly/workflows/debruijn-graph.ga", - "test_results": null, - "tests": true, - "title": "Debruijn Graph", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-debruijn-graph-assembly/versions/debruijn-graph", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/debruijn-graph-assembly/workflows/debruijn-graph.ga", - "wfid": "assembly-debruijn-graph-assembly", - "wfname": "debruijn-graph", - "workflow": "debruijn-graph.ga" - } - ], - "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": "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": [ - "De-novo assembly", - "Genome assembly", - "Visualisation", - "Sequence assembly validation", - "Scaffolding", - "Phasing", - "k-mer counting", - "Transcriptome assembly" - ], - "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-03", - "objectives": [ - "Assess assembly quality" - ], - "pageviews": 2576212, - "pub_date": "2022-08-26", - "questions": [ - "Is my genome assembly ready for annotation and/or scaffolding?" - ], - "short_id": "T00028", - "short_tools": [ - "meryl", - "merqury", - "quast", - "busco", - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 262, - "visitors": 1079249, - "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" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Genome Assembly Quality Control", - "path": "topics/assembly/tutorials/assembly-quality-control/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Genome Assembly Quality Control", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-quality-control/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-quality-control/workflows/main_workflow.ga", - "wfid": "assembly-assembly-quality-control", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/6947782" - }, - { - "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": [ - "De-novo assembly", - "Genome assembly", - "Sequence alignment analysis", - "Data handling", - "Sequence assembly visualisation", - "Scaffolding", - "Phasing", - "Sequence assembly validation", - "k-mer counting", - "Sequence alignment", - "Genotyping", - "Transcriptome assembly", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "hands_on": true, - "id": "assembly/ERGA-post-assembly-QC", - "inexact_supported_servers": [], - "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": "2023-11-03", - "objectives": [ - "apply the post-assembly-QC-workflow using the necessary tools", - "analyse and evaluate the results of the workflow" - ], - "pageviews": 915, - "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": [ - "pretext_snapshot", - "bandage_image", - "CONVERTER_gz_to_uncompressed", - "merqury", - "bg_diamond", - "interactive_tool_blobtoolkit", - "busco", - "tp_find_and_replace", - "blobtoolkit", - "genomescope", - "collapse_dataset", - "smudgeplot", - "bellerophon", - "bwa_mem2", - "__EXTRACT_DATASET__", - "gfastats", - "meryl", - "pretext_map", - "samtools_stats", - "hisat2" - ], - "slides": false, - "slides_recordings": false, - "supported_servers": { - "exact": [ - { - "name": "UseGalaxy.eu", - "url": "https://usegalaxy.eu", - "usegalaxy": true - } - ], - "inexact": [] - }, - "symlink": null, - "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": 12, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 100, - "visitors": 699, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-5752-2155", - "name": "Crist\u00f3bal Gallardo Alba" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Post-assembly workflow", - "path": "topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Post-assembly workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-ERGA-post-assembly-QC/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.ga", - "wfid": "assembly-ERGA-post-assembly-QC", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "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": [ - "De-novo assembly", - "Genome assembly", - "Visualisation", - "Mapping assembly", - "Sequence assembly validation", - "Scaffolding", - "Cross-assembly", - "Transcriptome assembly" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.fr", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.0, - "feedback_number": 2, - "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-03", - "objectives": [ - "Assemble a Genome with PacBio data", - "Assess assembly quality" - ], - "pageviews": 4246, - "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": [ - "flye", - "quast", - "busco", - "fasta-stats" - ], - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 119, - "visitors": 3064, - "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" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Genome Assembly using PacBio data", - "path": "topics/assembly/tutorials/flye-assembly/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Genome Assembly using PacBio data", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-flye-assembly/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/flye-assembly/workflows/main_workflow.ga", - "wfid": "assembly-flye-assembly", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/5702408" - }, - { - "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/", - "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": [ - "Sequence assembly visualisation", - "Sequence composition calculation", - "Sequence contamination filtering", - "Genome assembly", - "Statistical calculation", - "Sequencing quality control", - "Visualisation", - "Sequence assembly validation" - ], - "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": 4.5, - "feedback_number": 8, - "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-11", - "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": 9890, - "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": [ - "bandage_image", - "upload1", - "quast", - "bandage_info", - "fastqc", - "fastp", - "shovill" - ], - "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": 28, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 224, - "visitors": 6115, - "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" - } - ], - "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 ae9da590-67e9-448e-a1a6-29b8fe7deea0[\"Output\\nfastp_json\"];\n 3 --> ae9da590-67e9-448e-a1a6-29b8fe7deea0;\n style ae9da590-67e9-448e-a1a6-29b8fe7deea0 stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC\"];\n 1 -->|output| 4;\n 5[\"Shovill\"];\n 3 -->|out1| 5;\n 3 -->|out2| 5;\n e171bf01-23c2-4513-b5b7-5767ee05f0b4[\"Output\\nshovill_log\"];\n 5 --> e171bf01-23c2-4513-b5b7-5767ee05f0b4;\n style e171bf01-23c2-4513-b5b7-5767ee05f0b4 stroke:#2c3143,stroke-width:4px;\n 6[\"Quast\"];\n 5 -->|contigs| 6;\n 12ad6ab6-f0a8-4243-bc87-b868217069b8[\"Output\\nquast_output\"];\n 6 --> 12ad6ab6-f0a8-4243-bc87-b868217069b8;\n style 12ad6ab6-f0a8-4243-bc87-b868217069b8 stroke:#2c3143,stroke-width:4px;\n 7[\"Bandage Image\"];\n 5 -->|contigs_graph| 7;\n 8[\"Bandage Info\"];\n 5 -->|contigs_graph| 8;\n 9a6b5a67-9d26-4f57-a22a-3e957ee08bdf[\"Output\\nbandage_info_output\"];\n 8 --> 9a6b5a67-9d26-4f57-a22a-3e957ee08bdf;\n style 9a6b5a67-9d26-4f57-a22a-3e957ee08bdf stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:29 +0000", - "name": "Genome Assembly of MRSA using Illumina MiSeq Data", - "path": "topics/assembly/tutorials/mrsa-illumina/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Genome Assembly of MRSA using Illumina MiSeq Data", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-mrsa-illumina/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-illumina/workflows/main_workflow.ga", - "wfid": "assembly-mrsa-illumina", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/10669812" - }, - { - "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": [ - "De-novo assembly", - "Genome assembly", - "Generation", - "Genome indexing", - "Coding region prediction", - "Read alignment", - "Mapping assembly", - "Sequence assembly visualisation", - "Cross-assembly", - "Box-Whisker plot plotting", - "Scatter plot plotting", - "Gene prediction", - "Sequence assembly", - "Read mapping", - "Analysis", - "Genome annotation", - "Genome visualisation", - "Sequence alignment" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.518518518518518, - "feedback_number": 27, - "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-05-29", - "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": 9170, - "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": [ - "flye", - "nanoplot", - "bandage_image", - "pilon", - "upload1", - "prokka", - "bandage_info", - "fasta-stats", - "bwa_mem", - "jbrowse" - ], - "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": 42, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 168, - "visitors": 5715, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Chloroplast-genome-assembly-and-annotation", - "path": "topics/assembly/tutorials/chloroplast-assembly/workflows/Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga", - "test_results": null, - "tests": false, - "title": "Chloroplast-genome-assembly-and-annotation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-chloroplast-assembly/versions/galaxy-workflow-chloroplast-genome-assembly-and-annotation", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/chloroplast-assembly/workflows/Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga", - "wfid": "assembly-chloroplast-assembly", - "wfname": "galaxy-workflow-chloroplast-genome-assembly-and-annotation", - "workflow": "Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga" - } - ], - "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": "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": [ - "Sequence composition calculation", - "Base-calling", - "Genome assembly", - "Validation", - "Visualisation", - "Sequence assembly visualisation", - "Scaffolding", - "Scatter plot plotting", - "Statistical calculation", - "Pairwise sequence alignment", - "Sequence contamination filtering", - "De-novo assembly", - "Variant calling", - "Sequencing quality control", - "Mapping assembly", - "Sequence assembly validation", - "Cross-assembly", - "Box-Whisker plot plotting", - "Sequence assembly", - "Transcriptome assembly" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 5.0, - "feedback_number": 4, - "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-05-29", - "objectives": [ - "Assemble a large genome from long reads", - "Polish the assembly", - "Assess the quality of the assembly" - ], - "pageviews": 4176, - "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": [ - "flye", - "nanoplot", - "bandage_image", - "meryl", - "barchart_gnuplot", - "racon", - "genomescope", - "quast", - "busco", - "minimap2", - "multiqc", - "fasta-stats", - "fastqc", - "fastp", - "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" - ], - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 127, - "visitors": 3240, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Assembly polishing - upgraded", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_polishing.ga", - "test_results": null, - "tests": false, - "title": "Assembly polishing - upgraded", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assembly_polishing", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_polishing.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-assembly_polishing", - "workflow": "Galaxy-Workflow-Assembly_polishing.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Assembly with Flye - upgraded", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_with_Flye.ga", - "test_results": null, - "tests": false, - "title": "Assembly with Flye - upgraded", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assembly_with_flye", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_with_Flye.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-assembly_with_flye", - "workflow": "Galaxy-Workflow-Assembly_with_Flye.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Assess genome quality - upgraded", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assess_genome_quality.ga", - "test_results": null, - "tests": false, - "title": "Assess genome quality - upgraded", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assess_genome_quality", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assess_genome_quality.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-assess_genome_quality", - "workflow": "Galaxy-Workflow-Assess_genome_quality.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Combined workflows for large genome assembly - upgraded ", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", - "test_results": null, - "tests": false, - "title": "Combined workflows for large genome assembly - upgraded ", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-combined_workflows_for_large_genome_assembly", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-combined_workflows_for_large_genome_assembly", - "workflow": "Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Data QC - upgraded", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Data_QC.ga", - "test_results": null, - "tests": false, - "title": "Data QC - upgraded", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-data_qc", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Data_QC.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-data_qc", - "workflow": "Galaxy-Workflow-Data_QC.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Racon polish with Illumina reads (R1 only), x2 - upgraded", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", - "test_results": null, - "tests": false, - "title": "Racon polish with Illumina reads (R1 only), x2 - upgraded", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-racon_polish_with_illumina_reads_x2", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-racon_polish_with_illumina_reads_x2", - "workflow": "Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Racon polish with long reads, x4 - upgraded", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", - "test_results": null, - "tests": false, - "title": "Racon polish with long reads, x4 - upgraded", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-racon_polish_with_long_reads_x4", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-racon_polish_with_long_reads_x4", - "workflow": "Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Trim and filter reads - fastp - upgraded ", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Trim_and_filter_reads.ga", - "test_results": null, - "tests": false, - "title": "Trim and filter reads - fastp - upgraded ", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-trim_and_filter_reads", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Trim_and_filter_reads.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-trim_and_filter_reads", - "workflow": "Galaxy-Workflow-Trim_and_filter_reads.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9906-0673", - "name": "Anna Syme" - } - ], - "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-06-24 00:06:29 +0000", - "name": "kmer counting - meryl - upgraded", - "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-kmer_counting.ga", - "test_results": null, - "tests": false, - "title": "kmer counting - meryl - upgraded", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-kmer_counting", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-kmer_counting.ga", - "wfid": "assembly-largegenome", - "wfname": "galaxy-workflow-kmer_counting", - "workflow": "Galaxy-Workflow-kmer_counting.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.7055935" - }, - { - "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/", - "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": [ - "De-novo assembly", - "Sequence composition calculation", - "Genome assembly", - "Sequencing error detection", - "Visualisation", - "Sequencing quality control", - "Mapping assembly", - "Sequence assembly visualisation", - "Sequence assembly validation", - "Cross-assembly", - "Box-Whisker plot plotting", - "Scatter plot plotting", - "Filtering", - "Read mapping", - "Statistical calculation", - "Sequence alignment", - "Sequence contamination filtering" - ], - "edam_topic": [ - "Sequence assembly", - "Whole genome sequencing", - "Public health and epidemiology", - "Genomics", - "Microbiology", - "Antimicrobial Resistance" - ], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.0, - "feedback_number": 2, - "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": 9777, - "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": [ - "flye", - "nanoplot", - "bandage_image", - "polypolish", - "upload1", - "quast", - "porechop", - "CONVERTER_bz2_to_uncompressed", - "bwa_mem2", - "filtlong", - "fastqc", - "fastp" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 205, - "visitors": 6353, - "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" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Genome Assembly of MRSA using Oxford Nanopore MinION (and Illumina data if available)", - "path": "topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.ga", - "test_results": null, - "tests": true, - "title": "Genome Assembly of MRSA using Oxford Nanopore MinION (and Illumina data if available)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-mrsa-nanopore/versions/main-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.ga", - "wfid": "assembly-mrsa-nanopore", - "wfname": "main-workflow", - "workflow": "main-workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/10669812" - }, - { - "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": [ - "Sequence composition calculation", - "Genome assembly", - "Validation", - "Coding region prediction", - "Sequencing quality control", - "Visualisation", - "Sequence assembly validation", - "Statistical calculation", - "Gene prediction", - "Aggregation", - "Genome annotation" - ], - "edam_topic": [ - "Sequence assembly", - "Genomics", - "Microbiology" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 3.75, - "feedback_number": 8, - "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", - "MISSISSIPPI", - "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-11", - "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": 5552489, - "pub_date": "2017-10-11", - "questions": [ - "I have short reads and long reads. How do I assemble a genome?" - ], - "short_id": "T00038", - "short_tools": [ - "quast", - "prokka", - "unicycler", - "multiqc", - "fastqc" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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 - } - ] - }, - "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": 61, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 274, - "visitors": 1994916, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Unicycler training", - "path": "topics/assembly/tutorials/unicycler-assembly/workflows/unicycler.ga", - "test_results": null, - "tests": true, - "title": "Unicycler training", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-unicycler-assembly/versions/unicycler", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/unicycler-assembly/workflows/unicycler.ga", - "wfid": "assembly-unicycler-assembly", - "wfname": "unicycler", - "workflow": "unicycler.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.940733" - }, - { - "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": [ - "De-novo assembly", - "Genome assembly", - "Data handling", - "Mapping", - "Visualisation", - "Read binning", - "Primer removal", - "Sequence assembly validation", - "Scaffolding", - "Phasing", - "Read pre-processing", - "k-mer counting", - "Sequence alignment", - "Transcriptome assembly", - "Pairwise sequence alignment", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 5.0, - "feedback_number": 3, - "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-05-29", - "objectives": [ - "Learn the tools necessary to perform a de novo assembly of a vertebrate genome", - "Evaluate the quality of the assembly" - ], - "pageviews": 16296, - "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": [ - "pretext_snapshot", - "merqury", - "quast", - "busco", - "tp_find_and_replace", - "cat1", - "yahs", - "minimap2", - "Add_a_column1", - "hifiasm", - "genomescope", - "collapse_dataset", - "bellerophon", - "gfa_to_fa", - "sort1", - "bwa_mem2", - "gfastats", - "meryl", - "bedtools_bamtobed", - "purge_dups", - "collection_column_join", - "salsa", - "pretext_map", - "Convert characters1", - "bionano_scaffold", - "cutadapt", - "tp_cut_tool", - "tp_grep_tool" - ], - "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": 190, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 120, - "visitors": 10134, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "VGP assembly: training workflow", - "path": "topics/assembly/tutorials/vgp_genome_assembly/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "VGP assembly: training workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-vgp_genome_assembly/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/vgp_genome_assembly/workflows/main_workflow.ga", - "wfid": "assembly-vgp_genome_assembly", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/5887339" - }, - { - "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": [ - "Genome assembly", - "Validation", - "Sequencing quality control", - "Sequence file editing", - "Sequence assembly visualisation", - "Box-Whisker plot plotting", - "Scatter plot plotting", - "Aggregation", - "Read mapping", - "Data handling", - "Pairwise sequence alignment", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 5.0, - "feedback_number": 7, - "hands_on": true, - "id": "assembly/assembly-with-preprocessing", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-05-29", - "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": 5540580, - "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": [ - "nanoplot", - "bandage_image", - "samtools_view", - "samtools_stats", - "samtools_fastx", - "seqtk_sample", - "fasterq_dump", - "collapse_dataset", - "fasta_filter_by_length", - "bowtie2", - "__ZIP_COLLECTION__", - "bandage_info", - "multiqc", - "unicycler", - "fastp", - "minimap2" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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 - } - ] - }, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 364, - "visitors": 1988322, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "assembly_with_preprocessing", - "path": "topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.ga", - "test_results": null, - "tests": false, - "title": "assembly_with_preprocessing", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-with-preprocessing/versions/assembly_with_preprocessing", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.ga", - "wfid": "assembly-assembly-with-preprocessing", - "wfname": "assembly_with_preprocessing", - "workflow": "assembly_with_preprocessing.ga" - }, - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "assembly_with_preprocessing_and_sra_download", - "path": "topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.ga", - "test_results": null, - "tests": false, - "title": "assembly_with_preprocessing_and_sra_download", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-with-preprocessing/versions/assembly_with_preprocessing_and_sra_download", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.ga", - "wfid": "assembly-assembly-with-preprocessing", - "wfname": "assembly_with_preprocessing_and_sra_download", - "workflow": "assembly_with_preprocessing_and_sra_download.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3732359" - }, - { - "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", - "MISSISSIPPI", - "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-04-30", - "objectives": [ - "Learn the tools necessary to perform a de novo assembly of a vertebrate genome", - "Evaluate the quality of the assembly" - ], - "pageviews": 2822, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": "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": 74, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 166, - "visitors": 1954, - "zenodo_link": "https://zenodo.org/record/5887339" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "2020-12-28", - "pageviews": 5464654, - "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": 2, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1962545 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 3908136, - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 149, - "visitors": 1498223 - }, - { - "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": 4.0, - "feedback_number": 1, - "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-05-29", - "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": 5535155, - "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": [ - "ggplot2_point", - "xarray_select", - "xarray_metadata_info", - "tp_find_and_replace", - "interactive_tool_panoply", - "__EXTRACT_DATASET__", - "ctsm_fates" - ], - "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": 74, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 276, - "visitors": 1985357, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0002-1784-2920", - "name": "Anne Fouilloux" - } - ], - "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-06-24 00:06:29 +0000", - "name": "CLM-FATES_ ALP1 simulation (5 years)", - "path": "topics/climate/tutorials/fates/workflows/CLM-FATES_ALP1_simulation_5years.ga", - "test_results": null, - "tests": false, - "title": "CLM-FATES_ ALP1 simulation (5 years)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-fates/versions/clm-fates_alp1_simulation_5years", - "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/fates/workflows/CLM-FATES_ALP1_simulation_5years.ga", - "wfid": "climate-fates", - "wfname": "clm-fates_alp1_simulation_5years", - "workflow": "CLM-FATES_ALP1_simulation_5years.ga" - } - ], - "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/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": 5.0, - "feedback_number": 1, - "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-05-29", - "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": 3508616, - "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": 46, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 269, - "visitors": 1376079, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0002-1784-2920", - "name": "Anne Fouilloux", - "url": "https://github.com/annefou" - } - ], - "license": "MIT", - "mermaid": "flowchart TD\n 0[\"Pangeo Jupyter for Big Data geoscience\"];", - "modified": "2024-06-24 00:06:29 +0000", - "name": "Pangeo Jupyter Notebook", - "path": "topics/climate/tutorials/pangeo-notebook/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Pangeo Jupyter Notebook", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-pangeo-notebook/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/pangeo-notebook/workflows/main_workflow.ga", - "wfid": "climate-pangeo-notebook", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "argo_getdata", - "owner": "ecology", - "revisions": "055a934a380f", - "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: 055a934a380f\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": 70, - "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", - "timeseries_extraction", - "xarray_metadata_info", - "xarray_coords_info", - "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", - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 156, - "visitors": 56, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0008-0622-604X", - "name": "Marie Joss\u00e9", - "url": "https://github.com/Marie59" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Analyse Argo data ", - "path": "topics/climate/tutorials/argo_pangeo/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Analyse Argo data ", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-argo_pangeo/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/argo_pangeo/workflows/main_workflow.ga", - "wfid": "climate-argo_pangeo", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "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": 4.0, - "feedback_number": 1, - "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-05-29", - "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": 3508166, - "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_mapplot", - "ggplot2_point", - "xarray_select", - "regexColumn1", - "graphicsmagick_image_montage", - "xarray_metadata_info", - "__MERGE_COLLECTION__", - "__EXTRACT_DATASET__", - "xarray_coords_info", - "climate_stripes", - "xarray_netcdf2netcdf" - ], - "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": 23, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 348, - "visitors": 1375902, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-1784-2920", - "name": "Anne Fouilloux", - "url": "https://github.com/annefou" - } - ], - "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-06-24 00:06:29 +0000", - "name": "GTN 'Pangeo 101 for everyone - Xarray'", - "path": "topics/climate/tutorials/pangeo/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "GTN 'Pangeo 101 for everyone - Xarray'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-pangeo/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/pangeo/workflows/main_workflow.ga", - "wfid": "climate-pangeo", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.5805953" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-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-03-25", - "objectives": [ - "Deals with ODV collection with data originating from Emodnet chemistry", - "Visualise ocean variables to study climate changes" - ], - "pageviews": 79, - "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", - "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" - ], - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 63, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0008-0622-604X", - "name": "Marie Joss\u00e9", - "url": "https://github.com/Marie59" - } - ], - "license": "CC-BY-4.0", - "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nEutrophication_Med_profiles_2022_unrestricted_SNAPSHOT_2023-10-24T16-39-44.zip\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"ODV\"];\n 0 -->|output| 1;\n 2[\"Interactive DIVAnd Notebooks\"];\n 1 -->|outputs_netcdf| 2;\n 3[\"ODV\"];\n 2 -->|output_netcdf| 3;", - "modified": "2024-06-24 00:06:29 +0000", - "name": "Ocean's variables", - "path": "topics/climate/tutorials/ocean-variables/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Ocean's variables", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-ocean-variables/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/ocean-variables/workflows/main_workflow.ga", - "wfid": "climate-ocean-variables", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-25", - "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": 85, - "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_copernicus_notebook", - "interactive_tool_panoply", - "interactive_tool_copernicus" - ], - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 26, - "visitors": 74, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0008-0622-604X", - "name": "Marie Joss\u00e9", - "url": "https://github.com/Marie59" - } - ], - "license": "CC-BY-4.0", - "mermaid": "flowchart TD\n 0[\"Copernicus Data Space Ecosystem\"];\n 1[\"Panoply\"];\n 0 -->|output_collection| 1;", - "modified": "2024-06-24 00:06:29 +0000", - "name": "Sentinel5 volcanic data", - "path": "topics/climate/tutorials/sentinel5_data/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Sentinel5 volcanic data", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-sentinel5_data/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/sentinel5_data/workflows/main_workflow.ga", - "wfid": "climate-sentinel5_data", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "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": 4.666666666666667, - "feedback_number": 3, - "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": 1177, - "pub_date": "2020-04-30", - "questions": [ - "What is climate?", - "What type of data is available?" - ], - "short_id": "T00041", - "short_tools": [ - "ggplot2_point", - "tp_awk_tool", - "psy_maps", - "Grep1", - "datamash_ops", - "cds_essential_variability", - "climate_stripes" - ], - "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": 32, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 56, - "visitors": 828, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0002-1784-2920", - "name": "Anne Fouilloux" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Climate 101", - "path": "topics/climate/tutorials/climate-101/workflows/climate_101_workflow.ga", - "test_results": null, - "tests": false, - "title": "Climate 101", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-climate-101/versions/climate_101_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/climate-101/workflows/climate_101_workflow.ga", - "wfid": "climate-climate-101", - "wfname": "climate_101_workflow", - "workflow": "climate_101_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3776500" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533191, - "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": 2, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-24", - "objectives": [ - "Deal with netcdf files in ODV", - "Visualise ocean variables from Argo glider's data" - ], - "pageviews": 179, - "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": 2, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 106, - "visitors": 134 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-04", - "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": 846, - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 113, - "visitors": 453, - "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/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": 5.0, - "feedback_number": 1, - "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-03", - "objectives": [ - "Learn to use Panoply in Galaxy to visuallize netCDF geo-referenced data", - "Learn how Panoply plots are exported to Galaxy" - ], - "pageviews": 9268, - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 52, - "visitors": 5402, - "zenodo_link": "https://doi.org/10.5281/zenodo.3695482" - }, - { - "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": 3.6, - "feedback_number": 5, - "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" - ], - "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-03", - "objectives": [ - "Learn which analysis tools are available.", - "Analyse a protein and discuss the meaning behind each analysis." - ], - "pageviews": 52930, - "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_dihedral", - "bio3d_rmsf", - "mdanalysis_distance", - "mdanalysis_ramachandran_plot", - "mdanalysis_rdf", - "bio3d_pca", - "mdanalysis_cosine_analysis", - "bio3d_rmsd" - ], - "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 - } - ] - }, - "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": 32, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 76, - "visitors": 28611, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "", - "name": "Chris Barnett" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Analysis using MDAnalysis", - "path": "topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/advanced_workflow.ga", - "test_results": null, - "tests": true, - "title": "Analysis using MDAnalysis", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-analysis-md-simulations/versions/advanced_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/advanced_workflow.ga", - "wfid": "computational-chemistry-analysis-md-simulations", - "wfname": "advanced_workflow", - "workflow": "advanced_workflow.ga" - }, - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Simple Analysis", - "path": "topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Simple Analysis", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-analysis-md-simulations/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/main_workflow.ga", - "wfid": "computational-chemistry-analysis-md-simulations", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/2537734" - }, - { - "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": 4.833333333333333, - "feedback_number": 6, - "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-03", - "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": 42490, - "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": [ - "get_pdb", - "gmx_sim", - "gmx_setup", - "gmx_solvate", - "gmx_editconf", - "gmx_em", - "tp_grep_tool" - ], - "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": 37, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 84, - "visitors": 22523, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "GROMACS Training Workflow", - "path": "topics/computational-chemistry/tutorials/md-simulation-gromacs/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "GROMACS Training Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-md-simulation-gromacs/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-gromacs/workflows/main_workflow.ga", - "wfid": "computational-chemistry-md-simulation-gromacs", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/2598415" - }, - { - "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": 3.8333333333333335, - "feedback_number": 12, - "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-05-29", - "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": 15098, - "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": [ - "get_pdb", - "gmx_energy", - "bio3d_rmsf", - "vmd_hbonds", - "gmx_sim", - "gmx_setup", - "gmx_solvate", - "openbabel_compound_convert", - "md_converter", - "gmx_merge_topology_files", - "gmx_editconf", - "bio3d_pca_visualize", - "bio3d_pca", - "gmx_em", - "mdanalysis_cosine_analysis", - "tp_grep_tool", - "bio3d_rmsd", - "ambertools_acpype" - ], - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 161, - "visitors": 7978, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Workflow constructed from history 'Hsp90-MDAnalysis'", - "path": "topics/computational-chemistry/tutorials/htmd-analysis/workflows/analysis_workflow.ga", - "test_results": null, - "tests": false, - "title": "Workflow constructed from history 'Hsp90-MDAnalysis'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-htmd-analysis/versions/analysis_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/htmd-analysis/workflows/analysis_workflow.ga", - "wfid": "computational-chemistry-htmd-analysis", - "wfname": "analysis_workflow", - "workflow": "analysis_workflow.ga" - }, - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "MD protein-ligand workflow (from PDB structure)", - "path": "topics/computational-chemistry/tutorials/htmd-analysis/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "MD protein-ligand workflow (from PDB structure)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-htmd-analysis/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/htmd-analysis/workflows/main_workflow.ga", - "wfid": "computational-chemistry-htmd-analysis", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/records/3813283" - }, - { - "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)" - ], - "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-26", - "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": 185, - "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": [ - "get_pdb", - "openbabel_compound_convert", - "ctb_silicos_qed", - "md_converter", - "chembl", - "openbabel_svg_depiction", - "ctb_im_rxn_maker" - ], - "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 - } - ], - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 131, - "visitors": 153, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Data management in Medicinal Chemistry workflow", - "path": "topics/computational-chemistry/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.ga", - "test_results": null, - "tests": true, - "title": "Data management in Medicinal Chemistry workflow", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.ga", - "wfid": "computational-chemistry-med-chem-data", - "wfname": "data-management-in-medicinal-chemistry-workflow", - "workflow": "Data-management-in-Medicinal-Chemistry-workflow.ga" - } - ] - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-03", - "objectives": [ - "Learn about the NAMD engine provided in BRIDGE" - ], - "pageviews": 6239, - "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": [ - "minimizer", - "namd_nvt", - "setup", - "namd_npt" - ], - "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": 22, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 73, - "visitors": 3519, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "MD NAMD", - "path": "topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "MD NAMD", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-md-simulation-namd/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow.ga", - "wfid": "computational-chemistry-md-simulation-namd", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - }, - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "NAMD MD From CHARMM GUI", - "path": "topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow_charmmgui.ga", - "test_results": null, - "tests": false, - "title": "NAMD MD From CHARMM GUI", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-md-simulation-namd/versions/main_workflow_charmmgui", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow_charmmgui.ga", - "wfid": "computational-chemistry-md-simulation-namd", - "wfname": "main_workflow_charmmgui", - "workflow": "main_workflow_charmmgui.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3234841" - }, - { - "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": 4.2, - "feedback_number": 5, - "hands_on": true, - "id": "computational-chemistry/cheminformatics", - "inexact_supported_servers": [], - "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-03", - "objectives": [ - "Create a small compound library using the ChEMBL database", - "Dock a variety of ligands to the active site of the Hsp90 protein" - ], - "pageviews": 27076, - "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_chemfp_butina_clustering", - "docking", - "openbabel_compound_convert", - "prepare_receptor", - "chembl", - "ctb_online_data_fetch", - "ctb_remDuplicates", - "tp_find_and_replace", - "get_pdb", - "ctb_change_title", - "collapse_dataset", - "ctb_remIons", - "ctb_filter", - "ctb_obgrep", - "ctb_np-likeness-calculator", - "sdf_to_tab", - "ctb_compound_convert", - "ctb_chemfp_mol2fps", - "fpocket", - "tp_cat", - "openbabel_svg_depiction", - "ctb_chemfp_nxn_clustering", - "prepare_box", - "tp_grep_tool" - ], - "slides": false, - "slides_recordings": false, - "supported_servers": { - "exact": [], - "inexact": [] - }, - "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": 23, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 89, - "visitors": 15017, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "CTB Workflow", - "path": "topics/computational-chemistry/tutorials/cheminformatics/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "CTB Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-cheminformatics/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/cheminformatics/workflows/main_workflow.ga", - "wfid": "computational-chemistry-cheminformatics", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "" - }, - { - "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": 3.25, - "feedback_number": 4, - "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-03", - "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": 4444, - "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", - "rxdock_rbcavity", - "xchem_transfs_scoring", - "openbabel_compound_convert", - "split_file_to_collection", - "collapse_dataset", - "rxdock_rbdock", - "rdock_rbdock", - "ctb_frankenstein_ligand", - "rdock_rbcavity", - "xchem_pose_scoring", - "sucos_max_score" - ], - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 178, - "visitors": 2605, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", - "path": "topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", - "test_results": null, - "tests": false, - "title": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-covid19-docking/versions/workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", - "wfid": "computational-chemistry-covid19-docking", - "wfname": "workflow", - "workflow": "workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3730474" - }, - { - "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" - ], - "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-11", - "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": 1354, - "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": [ - "tp_cat", - "split_file_to_collection", - "openbabel_addh", - "sort1", - "ctb_alignit", - "rdconf" - ], - "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 - } - ], - "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": 23, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 880, - "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" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Zauberkugel", - "path": "topics/computational-chemistry/tutorials/zauberkugel/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Zauberkugel", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-zauberkugel/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/zauberkugel/workflows/main_workflow.ga", - "wfid": "computational-chemistry-zauberkugel", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/6055897" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 3, - "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-03", - "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": 1890, - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 109, - "visitors": 1373, - "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": [ - "Sequence file editing", - "Read mapping", - "Data handling", - "Primer removal", - "Read pre-processing", - "Sequence trimming" - ], - "edam_topic": [], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "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-05-29", - "objectives": [ - "Create a tutorial from scratch", - "Link a tutorial to a topic", - "Create hands-on", - "Add technical support for a tutorial" - ], - "pageviews": 1941, - "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": [ - "Cut1", - "tp_sed_tool", - "cutadapt", - "tp_cat", - "random_lines1", - "bowtie2", - "bam_to_sam", - "seqtk_subseq", - "tp_cut_tool", - "Filter1", - "tp_sorted_uniq", - "fastq_to_tabular", - "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": 49, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 315, - "visitors": 1274, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "MakeAFakeInput", - "path": "topics/contributing/tutorials/create-new-tutorial/workflows/Galaxy-Workflow-MakeAFakeInput.ga", - "test_results": null, - "tests": false, - "title": "MakeAFakeInput", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/contributing-create-new-tutorial/versions/galaxy-workflow-makeafakeinput", - "url": "https://training.galaxyproject.org/training-material/topics/contributing/tutorials/create-new-tutorial/workflows/Galaxy-Workflow-MakeAFakeInput.ga", - "wfid": "contributing-create-new-tutorial", - "wfname": "galaxy-workflow-makeafakeinput", - "workflow": "Galaxy-Workflow-MakeAFakeInput.ga" - }, - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Retrieve climate data from Copernicus", - "path": "topics/contributing/tutorials/create-new-tutorial/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Retrieve climate data from Copernicus", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/contributing-create-new-tutorial/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/contributing/tutorials/create-new-tutorial/workflows/main_workflow.ga", - "wfid": "contributing-create-new-tutorial", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-05-31", - "objectives": [ - "Create a new set of slides", - "Add presenter comments" - ], - "pageviews": 5533191, - "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": 40, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533191, - "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": 3, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 6, - "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-03", - "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": 5537646, - "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": 39, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 195, - "visitors": 1986932 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 2, - "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-03", - "objectives": [ - "Edit a file via GitHub interface", - "Create a pull request", - "Update a pull request" - ], - "pageviews": 884, - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 137, - "visitors": 556 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 84, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 16, - "visitors": 71 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 300, - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 257, - "visitors": 223 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-03", - "objectives": [ - "Creating a Galaxy tour from scratch", - "Deploying and running a tour" - ], - "pageviews": 401, - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 164, - "visitors": 244 - }, - { - "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": [ - "Validation", - "Sequencing quality control" - ], - "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-06-11", - "objectives": [ - "Create hands-on", - "Use the different boxes" - ], - "pageviews": 8984, - "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": [ - "multiqc", - "upload1" - ], - "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": 126, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 121, - "visitors": 3147 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-21", - "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": 4546, - "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": 56, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 50, - "visitors": 3778 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-03", - "objectives": [ - "Generating PDFs" - ], - "pageviews": 71, - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 217, - "visitors": 56 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.333333333333333, - "feedback_number": 3, - "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-18", - "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": 584, - "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": 46, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 110, - "visitors": 407 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.4, - "feedback_number": 5, - "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-05-29", - "objectives": [ - "Preview the GTN website online via GitPod", - "Make changes to the GTN website and preview those changes" - ], - "pageviews": 1256, - "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": 11, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 171, - "visitors": 876 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-21", - "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": 14, - "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/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": 3.8333333333333335, - "feedback_number": 6, - "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": "2023-11-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": 1388, - "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": 37, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 201, - "visitors": 1000 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-03", - "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": 534, - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 178, - "visitors": 381 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-04-15", - "objectives": [ - "Know where to find all of the available metadata, so you can reference it later." - ], - "pageviews": 228, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 221, - "visitors": 163 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 424, - "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": 12, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 40, - "visitors": 138 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 3.5, - "feedback_number": 2, - "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": 1000, - "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": 45, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 28, - "visitors": 640 - }, - { - "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-06-24", - "objectives": [ - "Learn about metadata and findability", - "Learn how to support system and content curation" - ], - "pageviews": 0, - "priority": 3, - "pub_date": "2024-06-24", - "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": "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": [ - "Methylation analysis", - "Tree-based sequence alignment", - "Variant classification", - "Variant calling" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.5, - "feedback_number": 10, - "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-05-29", - "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": 11718, - "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": [ - "pangolin", - "fasta_regex_finder", - "upload1", - "nextclade", - "datamash_ops", - "Filter1" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 207, - "visitors": 6254, - "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": "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": [ - "Generation", - "Sequence alignment", - "Validation", - "Genome indexing", - "Sequencing quality control", - "Formatting", - "SNP detection", - "Read mapping", - "Data handling", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.0, - "feedback_number": 5, - "hands_on": true, - "id": "variant-analysis/sars-cov-2", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-05-29", - "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": 18099, - "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": [ - "picard_MarkDuplicates", - "samtools_stats", - "snpeff_sars_cov_2", - "fasterq_dump", - "Grep1", - "multiqc", - "lofreq_indelqual", - "snpSift_extractFields", - "tp_cut_tool", - "bwa_mem", - "fastp", - "lofreq_viterbi", - "Filter1", - "lofreq_call" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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.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": 45, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 174, - "visitors": 11906, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Simple COVID-19 - PE Variation", - "path": "topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Simple COVID-19 - PE Variation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-sars-cov-2/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", - "wfid": "variant-analysis-sars-cov-2", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "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": 3.25, - "feedback_number": 4, - "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-03", - "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": 4444, - "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", - "rxdock_rbcavity", - "xchem_transfs_scoring", - "openbabel_compound_convert", - "split_file_to_collection", - "collapse_dataset", - "rxdock_rbdock", - "rdock_rbdock", - "ctb_frankenstein_ligand", - "rdock_rbcavity", - "xchem_pose_scoring", - "sucos_max_score" - ], - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 178, - "visitors": 2605, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", - "path": "topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", - "test_results": null, - "tests": false, - "title": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-covid19-docking/versions/workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", - "wfid": "computational-chemistry-covid19-docking", - "wfname": "workflow", - "workflow": "workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3730474" - }, - { - "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": [ - "Genome assembly", - "Validation", - "Sequencing quality control", - "Sequence file editing", - "Sequence assembly visualisation", - "Box-Whisker plot plotting", - "Scatter plot plotting", - "Aggregation", - "Read mapping", - "Data handling", - "Pairwise sequence alignment", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 5.0, - "feedback_number": 7, - "hands_on": true, - "id": "assembly/assembly-with-preprocessing", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-05-29", - "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": 5540581, - "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": [ - "nanoplot", - "bandage_image", - "samtools_view", - "samtools_stats", - "samtools_fastx", - "seqtk_sample", - "fasterq_dump", - "collapse_dataset", - "fasta_filter_by_length", - "bowtie2", - "__ZIP_COLLECTION__", - "bandage_info", - "multiqc", - "unicycler", - "fastp", - "minimap2" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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 - } - ] - }, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 364, - "visitors": 1988322, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "assembly_with_preprocessing", - "path": "topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.ga", - "test_results": null, - "tests": false, - "title": "assembly_with_preprocessing", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-with-preprocessing/versions/assembly_with_preprocessing", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.ga", - "wfid": "assembly-assembly-with-preprocessing", - "wfname": "assembly_with_preprocessing", - "workflow": "assembly_with_preprocessing.ga" - }, - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "assembly_with_preprocessing_and_sra_download", - "path": "topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.ga", - "test_results": null, - "tests": false, - "title": "assembly_with_preprocessing_and_sra_download", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-with-preprocessing/versions/assembly_with_preprocessing_and_sra_download", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.ga", - "wfid": "assembly-assembly-with-preprocessing", - "wfname": "assembly_with_preprocessing_and_sra_download", - "workflow": "assembly_with_preprocessing_and_sra_download.ga" - } - ], - "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": "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", - "Sequence alignment", - "Read mapping", - "Genome indexing", - "Data handling", - "Sequence file editing" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.fr", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 5.0, - "feedback_number": 7, - "hands_on": true, - "id": "sequence-analysis/human-reads-removal", - "inexact_supported_servers": [ - "Galaxy@AuBi", - "GalaxyTrakr", - "MISSISSIPPI", - "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-03", - "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": 4596, - "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": [ - "tp_replace_in_line", - "trimmomatic", - "samtools_fastx", - "Grep1", - "__ZIP_COLLECTION__", - "seqtk_subseq", - "__UNZIP_COLLECTION__", - "bwa_mem" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": [ - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 144, - "visitors": 3222, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN - Sequence Analyses - Removal of human reads from SARS-CoV-2 sequencing data", - "path": "topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.ga", - "test_results": null, - "tests": false, - "title": "GTN - Sequence Analyses - Removal of human reads from SARS-CoV-2 sequencing data", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-human-reads-removal/versions/human-reads-removal", - "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.ga", - "wfid": "sequence-analysis-human-reads-removal", - "wfname": "human-reads-removal", - "workflow": "human-reads-removal.ga" - } - ] - }, - { - "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-03", - "objectives": [ - "Submit raw sequencing reads and metadata to ENA's test server", - "Submit consensus sequence and metadata to ENA's test server" - ], - "pageviews": 4442300, - "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_upload", - "ena_webin_cli" - ], - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 241, - "visitors": 1662033, - "workflows": [ - { - "creators": [], - "license": null, - "mermaid": "flowchart TD\n 0[\"ENA Upload tool\"];\n 1[\"ENA Upload tool\"];", - "modified": "2024-06-24 00:06:31 +0000", - "name": "GTN_ENA_upload_workflow", - "path": "topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "GTN_ENA_upload_workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-upload-data-to-ena/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.ga", - "wfid": "galaxy-interface-upload-data-to-ena", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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": [ - "Tree-based sequence alignment", - "Variant classification" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "hands_on": true, - "id": "galaxy-interface/workflow-automation", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-05-29", - "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": 2636, - "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": [ - "pangolin", - "bcftools_consensus", - "collapse_dataset", - "compose_text_param", - "snpSift_filter" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "usegalaxy": false - }, - { - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 118, - "visitors": 2125, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0002-9464-6640", - "name": "Wolfgang Maier" - } - ], - "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-06-24 00:06:31 +0000", - "name": "vcf2lineage", - "path": "topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "vcf2lineage", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-automation/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.ga", - "wfid": "galaxy-interface-workflow-automation", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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-12", - "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": 4778135, - "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", - "jq", - "snpeff_sars_cov_2", - "tp_cat", - "fasterq_dump", - "fastq_dump", - "query_tabular" - ], - "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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 268, - "visitors": 1762701 - }, - { - "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": [ - "Sequence composition calculation", - "Generation", - "Read mapping", - "Genome visualisation", - "Statistical calculation", - "Genome indexing", - "Sequence alignment", - "Sequencing quality control" - ], - "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", - "MISSISSIPPI", - "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": 811, - "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": [ - "bwa_mem", - "fastqc", - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 259, - "visitors": 616, - "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" - ], - "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" - }, - { - "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": 4.333333333333333, - "feedback_number": 3, - "hands_on": true, - "id": "data-science/data-manipulation-olympics", - "inexact_supported_servers": [], - "js_requirements": { - "mathjax": 53917, - "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-06-24", - "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-06-24", - "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": [ - "", - "Cut1", - "Grouping1", - "cat1", - "tp_sorted_uniq", - "Add_a_column1", - "Count1", - "tp_split_on_column", - "regexColumn1", - "tabular_to_csv", - "wc_gnu", - "Remove beginning1", - "Show beginning1", - "join1", - "Filter1", - "upload1", - "tp_cat", - "datamash_ops", - "tp_sort_header_tool" - ], - "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": [], - "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-06-24 00:06:32 +0000", - "name": "GTN Tutorial: Data manipulation Olympics - all steps and exercises", - "path": "topics/data-science/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.ga", - "test_results": null, - "tests": false, - "title": "GTN Tutorial: Data manipulation Olympics - all steps and exercises", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/data-science-data-manipulation-olympics/versions/data_manipulation_olympics_with_exercises", - "url": "https://training.galaxyproject.org/training-material/topics/data-science/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.ga", - "wfid": "data-science-data-manipulation-olympics", - "wfname": "data_manipulation_olympics_with_exercises", - "workflow": "data_manipulation_olympics_with_exercises.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/6803028" - }, - { - "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": "http://biont-training.eu/assets/img/BioNT_Logo_Layout_2106_blue_Version_2_cropped.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", - "MISSISSIPPI", - "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-03", - "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": 982422, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "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": 13, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 405, - "visitors": 422001, - "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/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-19", - "objectives": [ - "Have a basic understanding of history of biology from Darwin to today." - ], - "pageviews": 632143, - "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": 3, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 151, - "visitors": 266017 - }, - { - "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/", - "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/", - "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-15", - "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": 463, - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 103, - "visitors": 365, - "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/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/", - "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-21", - "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": 549, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 20, - "visitors": 506, - "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/", - "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": 1106, - "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": 12, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 99, - "visitors": 812 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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/", - "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": 1054, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 165, - "visitors": 748, - "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/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-15", - "objectives": [ - "Create a repository", - "Commit a file", - "Make some changes", - "Use the log to view the diff", - "Undo a bad change" - ], - "pageviews": 343, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 24, - "visitors": 102 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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/", - "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-15", - "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": 557, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 19, - "visitors": 413, - "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/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/", - "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": 392, - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 50, - "visitors": 175 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.5, - "feedback_number": 2, - "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": 453, - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 40, - "visitors": 383 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "http://biont-training.eu/assets/img/BioNT_Logo_Layout_2106_blue_Version_2_cropped.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-03", - "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": 58, - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 84, - "visitors": 52, - "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/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": 1714, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 33, - "visitors": 1495, - "zenodo_link": "" - }, - { - "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/", - "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/", - "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-18", - "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": 1674, - "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": 12, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 33, - "visitors": 1319, - "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/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/", - "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": 3.8, - "feedback_number": 20, - "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-05-29", - "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": 2747, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 130, - "visitors": 1930, - "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/", - "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": 5.0, - "feedback_number": 1, - "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-10", - "objectives": [ - "Write a snakefile that does a simple QC and Mapping workflow" - ], - "pageviews": 3599, - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 58, - "visitors": 2713, - "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/sql-r/tutorial.json", - "contributors": [ - { - "id": "carpentries", - "joined": "2021-09", - "name": "The Carpentries", - "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", - "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/", - "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-15", - "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": 648, - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 36, - "visitors": 492, - "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-advanced/tutorial.json", - "contributors": [ - { - "id": "carpentries", - "joined": "2021-09", - "name": "The Carpentries", - "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", - "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/", - "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": 816, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 133, - "visitors": 654, - "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/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/", - "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": 3.3333333333333335, - "feedback_number": 3, - "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": 6836, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 119, - "visitors": 5128 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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": 5.0, - "feedback_number": 1, - "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": 465, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 71, - "visitors": 345, - "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/r-advanced/tutorial.json", - "contributors": [ - { - "id": "carpentries", - "joined": "2021-09", - "name": "The Carpentries", - "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", - "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": 4.5, - "feedback_number": 8, - "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-05-29", - "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": 1980, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 136, - "visitors": 1185, - "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/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/", - "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-03", - "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": 237, - "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": 11, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 65, - "visitors": 209, - "zenodo_link": "https://zenodo.org/record/6803028" - }, - { - "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/", - "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": 666, - "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": 12, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 30, - "visitors": 605 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-19", - "notebook": { - "language": "python", - "pyolite": true - }, - "objectives": [ - "Have a basic understanding of the history of sequencing", - "Understand Python basics" - ], - "pageviews": 48, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 144, - "visitors": 41 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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": 5.0, - "feedback_number": 1, - "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": 473, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 41, - "visitors": 397, - "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/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/", - "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": 633, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 56, - "visitors": 470, - "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/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-03", - "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": 383, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 45, - "visitors": 330, - "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-19", - "notebook": { - "language": "python", - "pyolite": true - }, - "objectives": [ - "Understand manipulation of FASTQ data in Python", - "Understand quality metrics" - ], - "pageviews": 14, - "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": 6, - "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": [] - }, - "admin_install_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/", - "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": 148, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 24, - "visitors": 138 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 1, - "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-03", - "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": 236, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 45, - "visitors": 206, - "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/", - "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": "2023-05-17", - "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": 1726, - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 17, - "visitors": 1512 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-19", - "notebook": { - "language": "python", - "pyolite": true - }, - "objectives": [ - "Understanding of lists and dictionaries", - "Learning about dynamic programming", - "Learning about how to translate DNA in Python" - ], - "pageviews": 11, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 20, - "visitors": 9 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-19", - "notebook": { - "language": "python", - "pyolite": true - }, - "objectives": [ - "Understand manipulation of files in Python" - ], - "pageviews": 12, - "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": 13, - "visitors": 12 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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": 158, - "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": 12, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 21, - "visitors": 148 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 0, - "visitors": 4 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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": 310, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 105, - "visitors": 271 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5, - "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": 434, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 21, - "visitors": 405 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 347, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 7, - "visitors": 314 - }, - { - "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": 189, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 88, - "visitors": 157 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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/", - "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/", - "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-17", - "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": 101, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 89, - "visitors": 88 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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/", - "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/", - "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-17", - "notebook": { - "language": "bash" - }, - "objectives": [ - "Set up a Conda environment for our software project using `conda`.", - "Run our software from the command line." - ], - "pageviews": 439, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 20, - "visitors": 411 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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-23", - "objectives": [ - "Learn how sys.argv works", - "Write a simple command line program that sums some numbers", - "Use argparse to make it nicer." - ], - "pageviews": 1204, - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 24, - "visitors": 1104 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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": 451, - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 14, - "visitors": 426 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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/", - "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/", - "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": 121, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 0, - "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/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": 366, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 14, - "visitors": 353 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 1042, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 13, - "visitors": 875 - }, - { - "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/", - "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/", - "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/", - "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-17", - "notebook": { - "language": "bash" - }, - "objectives": [ - "Understand the benefits of following community coding conventions" - ], - "pageviews": 99, - "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": 73, - "visitors": 87 - }, - { - "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/", - "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-15", - "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": 655, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 20, - "visitors": 601 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "2023-11-03", - "objectives": [ - "Discover what Galaxy Webhooks are", - "Be able to create Webhooks", - "Be able to add a Galaxy Webhook in a Galaxy instance" - ], - "pageviews": 5533401, - "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": 23, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 200, - "visitors": 1984333 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-03", - "objectives": [ - "Implement a first Galaxy visualization", - "Understand the client side vs. server side principle" - ], - "pageviews": 5533629, - "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": 26, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 276, - "visitors": 1984477 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-09-28", - "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": 5533192, - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "2023-11-03", - "objectives": [ - "Learn how to add JavaScript plugins to Galaxy using the Charts visualization framework" - ], - "pageviews": 5533862, - "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": 29, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 207, - "visitors": 1984736 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-27", - "objectives": [ - "Learn how to compile and install tools using standard procedures.", - "Learn needed tricks to write conda build.sh files." - ], - "pageviews": 5533192, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533195, - "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": 37, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984185 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 3.0, - "feedback_number": 1, - "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-15", - "notebook": { - "language": "python" - }, - "objectives": [ - "Interact with Galaxy via BioBlend." - ], - "pageviews": 5533762, - "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": 35, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 314, - "visitors": 1984603 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-09", - "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": 5533192, - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533192, - "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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-09-28", - "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": 5533192, - "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": 23, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533192, - "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": 52, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-05-29", - "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": 5533192, - "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": 57, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-05-29", - "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": 4803665, - "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": 130, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 314, - "visitors": 1770460 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-03-05", - "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": 83, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 125, - "visitors": 67 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-22", - "objectives": [ - "Learn about the different types of automated tests in Galaxy", - "Learn to write API tests", - "Learn to write unit tests" - ], - "pageviews": 581, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 169, - "visitors": 166 - }, - { - "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-03", - "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": 242, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 218, - "visitors": 165 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 3.0, - "feedback_number": 1, - "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-07", - "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": 966, - "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": 68, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 176, - "visitors": 687 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-09-28", - "objectives": null, - "pageviews": 271, - "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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 213, - "visitors": 165 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-05-29", - "objectives": [ - "Further develop your ToolFactory Skills" - ], - "pageviews": 359, - "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": 38, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 125, - "visitors": 293 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 3.0, - "feedback_number": 1, - "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-05-29", - "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": 1057, - "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": 43, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 184, - "visitors": 461 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "2023-11-03", - "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": 709, - "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": 28, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 142, - "visitors": 431 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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 Tool Metadata Extractor 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-20", - "objectives": [ - "Create a community reviewed table for Galaxy tools within a specific scientific domain", - "Embed an interactive table in a community page" - ], - "pageviews": 35, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 407, - "visitors": 31 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.6, - "feedback_number": 5, - "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-05-29", - "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": 3495, - "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": 39, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 161, - "visitors": 2065, - "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": 5.0, - "feedback_number": 1, - "hands_on": true, - "id": "ecology/obisindicators", - "inexact_supported_servers": [], - "js_requirements": { - "mathjax": 8813, - "mermaid": false - }, - "key_points": [ - "Marine data", - "Diversity indicators" - ], - "layout": "tutorial_hands_on", - "license": "CC-BY-4.0", - "mod_date": "2024-03-19", - "objectives": [ - "Calculating and vizualizing marine biodiversity indicators" - ], - "pageviews": 179, - "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": [ - "obisindicators", - "obis_data", - "tp_cut_tool" - ], - "slides": false, - "slides_recordings": false, - "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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 141, - "visitors": 145, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0008-0622-604X", - "name": "Marie Joss\u00e9", - "url": "https://github.com/Marie59" - } - ], - "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-06-24 00:06:30 +0000", - "name": "Marine Omics visualisation", - "path": "topics/ecology/tutorials/obisindicators/workflows/Obis-indicators.ga", - "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", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-obisindicators/versions/obis-indicators", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/obisindicators/workflows/Obis-indicators.ga", - "wfid": "ecology-obisindicators", - "wfname": "obis-indicators", - "workflow": "Obis-indicators.ga" - } - ] - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-02-25", - "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": 24, - "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, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 176, - "visitors": 23, - "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": "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-01-27", - "objectives": [ - "Calculate IVR (Visual Rollover Indicator)", - "Compute dissimilarity indice", - "Vizualize some diversity indices" - ], - "pageviews": 216, - "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_ivr", - "cb_qecb", - "cb_div", - "cb_dissim", - "cb_eco" - ], - "slides": false, - "slides_recordings": false, - "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": 29, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 190, - "visitors": 81, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Champs blocs indicators", - "path": "topics/ecology/tutorials/champs-blocs/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Champs blocs indicators", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-champs-blocs/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/champs-blocs/workflows/main_workflow.ga", - "wfid": "ecology-champs-blocs", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "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-04-10", - "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": 2187, - "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": [ - "xarray_mapplot", - "cdo_operations", - "graphicsmagick_image_montage", - "xarray_metadata_info", - "xarray_coords_info" - ], - "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": [ - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 31, - "visitors": 1863, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "Quickbeasts51429", - "name": "Soumya Jha" - } - ], - "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-06-24 00:06:30 +0000", - "name": "Xarray_Map_Plotting_Workflow", - "path": "topics/ecology/tutorials/x-array-map-plot/workflows/main-workflow.ga", - "test_results": null, - "tests": false, - "title": "Xarray_Map_Plotting_Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-x-array-map-plot/versions/main-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/x-array-map-plot/workflows/main-workflow.ga", - "wfid": "ecology-x-array-map-plot", - "wfname": "main-workflow", - "workflow": "main-workflow.ga" - } - ], - "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": "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": [ - "Genome assembly", - "Genetic variation analysis", - "Sequence assembly validation", - "Scaffolding", - "Multiple sequence alignment", - "Genome annotation", - "Sequence clustering", - "Transcriptome assembly", - "Sequence analysis" - ], - "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": "2022-10-28", - "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": 1927, - "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": [ - "clipkit", - "tp_replace_in_line", - "phykit_alignment_based", - "repeatmasker_wrapper", - "busco", - "collapse_dataset", - "regex1", - "proteinortho_grab_proteins", - "clustalw", - "glimmer_gbk_to_orf", - "Filter1", - "proteinortho", - "funannotate_predict" - ], - "slides": false, - "slides_recordings": false, - "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": 22, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 172, - "visitors": 1407, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "", - "name": "Miguel Roncoroni" - } - ], - "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-06-24 00:06:30 +0000", - "name": "preparing genomic data for phylogeny recostruction (GTN)", - "path": "topics/ecology/tutorials/phylogeny-data-prep/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "preparing genomic data for phylogeny recostruction (GTN)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-phylogeny-data-prep/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/phylogeny-data-prep/workflows/main_workflow.ga", - "wfid": "ecology-phylogeny-data-prep", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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/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-03-07", - "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": 66, - "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, - "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": 45, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 160, - "visitors": 42, - "zenodo_link": "https://zenodo.org/records/10663465" - }, - { - "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-01-19", - "objectives": [ - "Get occurrence data on a species", - "Visualize the data to understand them", - "Clean GBIF dataset for further analyses" - ], - "pageviews": 463, - "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": [ - "Count1", - "spocc_occ", - "gdal_ogr2ogr", - "Filter1", - "Summary_Statistics1" - ], - "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 - } - ], - "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": 40, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 65, - "visitors": 346, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "GBIF data Quality check and filtering workflow Feb-2020", - "path": "topics/ecology/tutorials/gbif_cleaning/workflows/Galaxy-Workflow-GBIF_data_Quality_check_and_filtering_workflow.ga", - "test_results": null, - "tests": false, - "title": "GBIF data Quality check and filtering workflow Feb-2020", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/gbif_cleaning/workflows/Galaxy-Workflow-GBIF_data_Quality_check_and_filtering_workflow.ga", - "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" - } - ], - "zenodo_link": "" - }, - { - "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": [ - "Sequence composition calculation", - "Statistical calculation", - "Sequencing quality control", - "Sequence analysis" - ], - "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-05-29", - "objectives": [ - "Deal with paired-end data to create consensus sequences", - "Clean, filter and anlayse data to obtain strong results" - ], - "pageviews": 3622, - "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": [ - "fastq_groomer", - "Cut1", - "obi_illumina_pairend", - "wc_gnu", - "obi_tab", - "obi_ngsfilter", - "unzip", - "obi_clean", - "ncbi_blastn_wrapper", - "obi_grep", - "obi_uniq", - "fastqc", - "obi_annotate", - "join1", - "Filter1", - "seq_filter_by_id", - "obi_stat" - ], - "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.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": 65, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 123, - "visitors": 2522, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Workflow constructed from history 'Tuto Obitools'", - "path": "topics/ecology/tutorials/Obitools-metabarcoding/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Workflow constructed from history 'Tuto Obitools'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-Obitools-metabarcoding/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/Obitools-metabarcoding/workflows/main_workflow.ga", - "wfid": "ecology-Obitools-metabarcoding", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/5932108" - }, - { - "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-05-29", - "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": 1570, - "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": [ - "regexColumn1", - "Remove beginning1", - "ecology_link_between_var", - "ecology_beta_diversity", - "ecology_presence_abs_abund", - "ecology_stat_presence_abs", - "tool_anonymization", - "tp_cut_tool", - "ecology_homogeneity_normality" - ], - "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 - } - ] - }, - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 176, - "visitors": 1059, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Workflow 'Biodiversity data exploration tuto'", - "path": "topics/ecology/tutorials/biodiversity-data-exploration/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Workflow 'Biodiversity data exploration tuto'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-biodiversity-data-exploration/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/biodiversity-data-exploration/workflows/main_workflow.ga", - "wfid": "ecology-biodiversity-data-exploration", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": 5.0, - "feedback_number": 2, - "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-05-29", - "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": 1243, - "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": [ - "Count1", - "pampa_presabs", - "regexColumn1", - "pampa_glmcomm", - "tp_cat", - "mergeCols1", - "pampa_communitymetrics", - "pampa_plotglm", - "tp_sort_header_tool", - "regex1", - "datamash_transpose", - "tp_cut_tool", - "tp_easyjoin_tool", - "Filter1", - "pampa_glmsp" - ], - "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, - "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": 50, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 112, - "visitors": 929, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Compute and analyze biodiversity metrics with PAMPA toolsuite", - "path": "topics/ecology/tutorials/PAMPA-toolsuite-tutorial/workflows/Galaxy-Workflow-Compute_and_analyze_biodiversity_metrics_with_PAMPA_toolsuite.ga", - "test_results": null, - "tests": false, - "title": "Compute and analyze biodiversity metrics with PAMPA toolsuite", - "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", - "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", - "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" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.4264936" - }, - { - "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": [ - "Sequence composition calculation", - "Statistical calculation", - "Data handling", - "Sequencing quality control" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.5, - "feedback_number": 2, - "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": "2023-11-03", - "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": 3722, - "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": [ - "fastqc", - "stacks_populations", - "stacks_procrad", - "stacks_denovomap" - ], - "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": [ - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 131, - "visitors": 2226, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "de novo Rad Seq", - "path": "topics/ecology/tutorials/de-novo-rad-seq/workflows/Galaxy-Workflow-de-novo-rad-seq.ga", - "test_results": null, - "tests": false, - "title": "de novo Rad Seq", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/de-novo-rad-seq/workflows/Galaxy-Workflow-de-novo-rad-seq.ga", - "wfid": "ecology-de-novo-rad-seq", - "wfname": "galaxy-workflow-de-novo-rad-seq", - "workflow": "Galaxy-Workflow-de-novo-rad-seq.ga" - } - ], - "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": "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-01-19", - "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": 334, - "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_diversity_maps", - "srs_spectral_indices", - "srs_global_indices", - "srs_process_data" - ], - "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, - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 98, - "visitors": 261, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "email": "mailto:marie14.josse@gmail.com", - "identifier": "Marie59", - "name": "Marie Josse" - } - ], - "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-06-24 00:06:30 +0000", - "name": "Sentinel 2 example", - "path": "topics/ecology/tutorials/remote-sensing/workflows/Sentinel-2-example.ga", - "test_results": null, - "tests": true, - "title": "Sentinel 2 example", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-remote-sensing/versions/sentinel-2-example", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/remote-sensing/workflows/Sentinel-2-example.ga", - "wfid": "ecology-remote-sensing", - "wfname": "sentinel-2-example", - "workflow": "Sentinel-2-example.ga" - } - ], - "zenodo_link": "" - }, - { - "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": 5.0, - "feedback_number": 1, - "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": "2023-11-03", - "objectives": [ - "SNP calling from RAD sequencing data", - "Find and correct haplotypes", - "Create input files for genetic map building software" - ], - "pageviews": 1076, - "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_genotypes", - "stacks_denovomap" - ], - "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.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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 84, - "visitors": 737, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Genetic Map Rad Seq Workflow", - "path": "topics/ecology/tutorials/genetic-map-rad-seq/workflows/genetic-map-rad-seq.ga", - "test_results": null, - "tests": false, - "title": "Genetic Map Rad Seq Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-genetic-map-rad-seq/versions/genetic-map-rad-seq", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/genetic-map-rad-seq/workflows/genetic-map-rad-seq.ga", - "wfid": "ecology-genetic-map-rad-seq", - "wfname": "genetic-map-rad-seq", - "workflow": "genetic-map-rad-seq.ga" - } - ], - "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": "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", - "id": "clsiguret", - "joined": "2024-04", - "name": "Clea Siguret", - "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": [ - "Statistical calculation", - "Cross-assembly", - "Taxonomic classification", - "Expression analysis" - ], - "edam_topic": [ - "Whole genome sequencing", - "Genomics", - "Microbiology", - "Microbial ecology" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.fr" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "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-04-04", - "objectives": [ - "Run a series of tool to identify species in bacterial isolate sequencing data", - "Visualize the species abundance" - ], - "pageviews": 226, - "pub_date": "2024-03-04", - "questions": [ - "What are the species in bacterial isolate sequencing data?" - ], - "short_id": "T00423", - "short_tools": [ - "kraken2", - "recentrifuge", - "upload1", - "est_abundance" - ], - "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": "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 292, - "visitors": 165, - "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" - } - ], - "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-06-24 00:06:30 +0000", - "name": "Checking expected species and contamination in bacterial isolate", - "path": "topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/workflows/Checking-expected-species-and-contamination-in-bacterial-isolate.ga", - "test_results": null, - "tests": true, - "title": "Checking expected species and contamination in bacterial isolate", - "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", - "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", - "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" - } - ], - "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": "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-04-10", - "objectives": [ - "Obtain and filter/manipulate occurrence data", - "Compute and visualize phenology of a species through the years", - "Compute temporal abundance trends" - ], - "pageviews": 345, - "pub_date": "2019-07-04", - "questions": [ - "What are abundance and trends of a butterfly species?" - ], - "short_id": "T00134", - "short_tools": [ - "ggplot2_point", - "Count1", - "regexColumn1", - "Remove beginning1", - "mergeCols1", - "tp_awk_tool", - "regionalgam_flight_curve", - "tab2csv_R", - "flight-curve", - "csv2tab_R", - "regionalgam_gls", - "regionalgam_plot_trend", - "regionalgam_ab_index", - "regionalgam_autocor_acf", - "regionalgam_glmmpql", - "Filter1", - "Paste1" - ], - "slides": false, - "slides_recordings": false, - "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": 212, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 240, - "visitors": 242, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Abundance Index \"stacked\" Visualization Creation", - "path": "topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Abundance_index__stacked__visualization_creation.ga", - "test_results": null, - "tests": false, - "title": "Abundance Index \"stacked\" Visualization Creation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-regionalGAM/versions/galaxy-workflow-abundance_index__stacked__visualization_creation", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Abundance_index__stacked__visualization_creation.ga", - "wfid": "ecology-regionalGAM", - "wfname": "galaxy-workflow-abundance_index__stacked__visualization_creation", - "workflow": "Galaxy-Workflow-Abundance_index__stacked__visualization_creation.ga" - }, - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Phenology \"stacked\" Visualization Creation", - "path": "topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Phenology__stacked__visualization_creation.ga", - "test_results": null, - "tests": false, - "title": "Phenology \"stacked\" Visualization Creation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-regionalGAM/versions/galaxy-workflow-phenology__stacked__visualization_creation", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Phenology__stacked__visualization_creation.ga", - "wfid": "ecology-regionalGAM", - "wfname": "galaxy-workflow-phenology__stacked__visualization_creation", - "workflow": "Galaxy-Workflow-Phenology__stacked__visualization_creation.ga" - }, - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Tutorial regionalGAM Complete Multispecies", - "path": "topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_regionalGAM_complete_Multispecies.ga", - "test_results": null, - "tests": false, - "title": "Tutorial regionalGAM Complete Multispecies", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-regionalGAM/versions/galaxy-workflow-tutorial_regionalgam_complete_multispecies", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_regionalGAM_complete_Multispecies.ga", - "wfid": "ecology-regionalGAM", - "wfname": "galaxy-workflow-tutorial_regionalgam_complete_multispecies", - "workflow": "Galaxy-Workflow-Tutorial_regionalGAM_complete_Multispecies.ga" - }, - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Regional GAM Workflow", - "path": "topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_training_regionalGAM_complete_workflow.ga", - "test_results": null, - "tests": false, - "title": "Regional GAM Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-regionalGAM/versions/galaxy-workflow-tutorial_training_regionalgam_complete_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_training_regionalGAM_complete_workflow.ga", - "wfid": "ecology-regionalGAM", - "wfname": "galaxy-workflow-tutorial_training_regionalgam_complete_workflow", - "workflow": "Galaxy-Workflow-Tutorial_training_regionalGAM_complete_workflow.ga" - } - ], - "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": "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": 5.0, - "feedback_number": 3, - "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": "2023-11-03", - "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": 4029, - "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", - "interactive_tool_wallace", - "spocc_occ", - "tp_cut_tool", - "tabular_to_csv", - "Filter1" - ], - "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": [ - "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": 98, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 68, - "visitors": 2515, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Species Distribution Modeling With Wallace From GBIF - Training Material", - "path": "topics/ecology/tutorials/species-distribution-modeling/workflows/Galaxy-Workflow-Species_Distribution_Modeling_with_Wallace_from_GBIF_-_Training_material.ga", - "test_results": null, - "tests": false, - "title": "Species Distribution Modeling With Wallace From GBIF - Training Material", - "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", - "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", - "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" - } - ] - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": [], - "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-01-24", - "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": 51, - "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", - "interactive_tool_copernicus" - ], - "slides": false, - "slides_recordings": false, - "supported_servers": { - "exact": [], - "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", - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 15, - "visitors": 45, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0008-0622-604X", - "name": "Marie Joss\u00e9", - "url": "https://github.com/Marie59" - } - ], - "license": "CC-BY-4.0", - "mermaid": "flowchart TD\n 0[\"Copernicus Data Space Ecosystem\"];\n 1[\"Holoviz\"];\n 0 -->|output_collection| 1;", - "modified": "2024-06-24 00:06:30 +0000", - "name": "NDVI with OpenEO", - "path": "topics/ecology/tutorials/ndvi_openeo/workflows/NDVI-with-OpenEO.ga", - "test_results": null, - "tests": true, - "title": "NDVI with OpenEO", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-ndvi_openeo/versions/ndvi-with-openeo", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ndvi_openeo/workflows/NDVI-with-OpenEO.ga", - "wfid": "ecology-ndvi_openeo", - "wfname": "ndvi-with-openeo", - "workflow": "NDVI-with-OpenEO.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0008-0622-604X", - "name": "Marie Joss\u00e9", - "url": "https://github.com/Marie59" - } - ], - "license": "CC-BY-4.0", - "mermaid": "flowchart TD\n 0[\"Copernicus Data Space Ecosystem\"];\n 1[\"Holoviz\"];\n 0 -->|output_collection| 1;", - "modified": "2024-06-24 00:06:30 +0000", - "name": "NDVI with OpenEO", - "path": "topics/ecology/tutorials/ndvi_openeo/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "NDVI with OpenEO", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-ndvi_openeo/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ndvi_openeo/workflows/main_workflow.ga", - "wfid": "ecology-ndvi_openeo", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "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": [ - "Sequence composition calculation", - "Generation", - "Sequence alignment", - "Genome indexing", - "Validation", - "Sequencing quality control", - "Read mapping", - "Statistical calculation", - "Data handling" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 4.0, - "feedback_number": 1, - "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": "2023-11-03", - "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": 3641, - "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": [ - "fastqc", - "Count1", - "Cut1", - "tp_replace_in_line", - "Convert characters1", - "addValue", - "stacks_procrad", - "bwa", - "Grep1", - "cat1", - "tp_sort_header_tool", - "multiqc", - "stacks_populations", - "stacks_refmap", - "regex_replace", - "bwa_wrapper", - "Filter1", - "Summary_Statistics1" - ], - "slides": false, - "slides_recordings": false, - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 107, - "visitors": 2131, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Workflow Constructed From History 'STACKS RAD: Population Genomics With Reference Genome'", - "path": "topics/ecology/tutorials/ref-based-rad-seq/workflows/Galaxy-Workflow-Workflow_constructed_from_history__STACKS_RAD__population_genomics_with_reference_genome_.ga", - "test_results": null, - "tests": false, - "title": "Workflow Constructed From History 'STACKS RAD: Population Genomics With Reference Genome'", - "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_", - "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", - "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" - }, - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Ref Based Rad Seq", - "path": "topics/ecology/tutorials/ref-based-rad-seq/workflows/workflow.ga", - "test_results": null, - "tests": false, - "title": "Ref Based Rad Seq", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-ref-based-rad-seq/versions/workflow", - "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ref-based-rad-seq/workflows/workflow.ga", - "wfid": "ecology-ref-based-rad-seq", - "wfname": "workflow", - "workflow": "workflow.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.1134547" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-01-19", - "objectives": [ - "Learn to use Panoply in Galaxy to visuallize EBV cube netCDF geo-referenced data", - "Learn how Panoply plots are exported to Galaxy" - ], - "pageviews": 201, - "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, - "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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 103, - "visitors": 145 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-01-19", - "objectives": [ - "Deal with QGIS execution management", - "Access, filter, and import GIS data using WFS webservice" - ], - "pageviews": 111, - "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, - "supported_servers": { - "exact": [ - { - "name": "UseGalaxy.eu", - "url": "https://usegalaxy.eu", - "usegalaxy": true - } - ], - "inexact": [] - }, - "symlink": null, - "tags": [ - "GIS", - "Geographical Information System", - "WFS", - "Spatial data", - "QGIS", - "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": 22, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 78, - "visitors": 92 - }, - { - "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": [ - "Enrichment analysis", - "Sequence composition calculation", - "Mapping", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "Peak calling", - "Gene regulatory network analysis", - "Read mapping", - "Statistical calculation", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.fr", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.0, - "feedback_number": 8, - "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-03", - "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": 5542980, - "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": [ - "deeptools_multi_bam_summary", - "deeptools_plot_correlation", - "deeptools_plot_fingerprint", - "trim_galore", - "bedtools_sortbed", - "samtools_idxstats", - "bowtie2", - "cat1", - "deeptools_bam_compare", - "deeptools_bam_coverage", - "fastqc", - "macs2_callpeak", - "Filter1", - "deeptools_compute_matrix", - "deeptools_plot_heatmap", - "bedtools_mergebed" - ], - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 382, - "visitors": 1988743, - "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" - } - ], - "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-06-24 00:06:31 +0000", - "name": "GTN - ChIP Seq - Formation Of Super Structures On Xi", - "path": "topics/epigenetics/tutorials/formation_of_super-structures_on_xi/workflows/formation_of_super_structures_on_xi.ga", - "test_results": null, - "tests": true, - "title": "GTN - ChIP Seq - Formation Of Super Structures On Xi", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/formation_of_super-structures_on_xi/workflows/formation_of_super_structures_on_xi.ga", - "wfid": "epigenetics-formation_of_super-structures_on_xi", - "wfname": "formation_of_super_structures_on_xi", - "workflow": "formation_of_super_structures_on_xi.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/1324070" - }, - { - "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": [ - "Enrichment analysis", - "Sequence composition calculation", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "Peak calling", - "Gene regulatory network analysis", - "Read mapping", - "Statistical calculation", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 2.0, - "feedback_number": 1, - "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": "2023-11-03", - "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": 2212, - "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_multi_bam_summary", - "deeptools_plot_correlation", - "deeptools_plot_fingerprint", - "trim_galore", - "samtools_idxstats", - "bowtie2", - "bam_to_sam", - "deeptools_bam_compare", - "deeptools_bam_coverage", - "fastqc", - "macs2_callpeak", - "deeptools_compute_gc_bias", - "deeptools_compute_matrix", - "deeptools_plot_heatmap" - ], - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 159, - "visitors": 1427, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Identification Of The Binding Sites Of The Estrogen Receptor - Chip Seq", - "path": "topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/chip_seq.ga", - "test_results": null, - "tests": false, - "title": "Identification Of The Binding Sites Of The Estrogen Receptor - Chip Seq", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-estrogen-receptor-binding-site-identification/versions/chip_seq", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/chip_seq.ga", - "wfid": "epigenetics-estrogen-receptor-binding-site-identification", - "wfname": "chip_seq", - "workflow": "chip_seq.ga" - }, - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "Identification Of The Binding Sites Of The Estrogen Receptor - Qc Mapping", - "path": "topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/qc_mapping.ga", - "test_results": null, - "tests": false, - "title": "Identification Of The Binding Sites Of The Estrogen Receptor - Qc Mapping", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-estrogen-receptor-binding-site-identification/versions/qc_mapping", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/qc_mapping.ga", - "wfid": "epigenetics-estrogen-receptor-binding-site-identification", - "wfname": "qc_mapping", - "workflow": "qc_mapping.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.892432" - }, - { - "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": [ - "Statistical calculation", - "Sequence composition calculation", - "Sequencing quality control" - ], - "edam_topic": [ - "Epigenomics" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 3.8181818181818183, - "feedback_number": 11, - "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": "2023-05-25", - "objectives": [ - "Learn how to analyse methylation data", - "Get a first intuition what are common pitfalls." - ], - "pageviews": 19220, - "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_tail_tool", - "tp_awk_tool", - "pileometh", - "bwameth", - "metilene", - "fastqc", - "deeptools_plot_profile", - "deeptools_compute_matrix" - ], - "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": 37, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 129, - "visitors": 10677, - "workflows": [ - { - "creators": [], - "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 abddb487-a843-4357-9857-41769fd26aef[\"Output\\nplot_profile_tabular\"];\n 21 --> abddb487-a843-4357-9857-41769fd26aef;\n style abddb487-a843-4357-9857-41769fd26aef stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:31 +0000", - "name": "Workflow Methylation Seq", - "path": "topics/epigenetics/tutorials/methylation-seq/workflows/methylation-seq.ga", - "test_results": null, - "tests": true, - "title": "Workflow Methylation Seq", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-methylation-seq/versions/methylation-seq", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/methylation-seq/workflows/methylation-seq.ga", - "wfid": "epigenetics-methylation-seq", - "wfname": "methylation-seq", - "workflow": "methylation-seq.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/557099" - }, - { - "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": [ - "Enrichment analysis", - "Sequence composition calculation", - "Sequence alignment analysis", - "Mapping", - "Sequencing quality control", - "Visualisation", - "Primer removal", - "Read pre-processing", - "Peak calling", - "Gene regulatory network analysis", - "Formatting", - "Read mapping", - "Statistical calculation", - "Data handling", - "Sequence trimming" - ], - "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": 923, - "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": [ - "picard_MarkDuplicates", - "Grep1", - "bowtie2", - "bamFilter", - "trim_galore", - "__EXTRACT_DATASET__", - "fastqc", - "deeptools_plot_heatmap", - "bedtools_bamtobed", - "pe_histogram", - "__FLATTEN__", - "wig_to_bigWig", - "meme_chip", - "Extract genomic DNA 1", - "idr", - "macs2_callpeak", - "pygenomeTracks", - "Filter1", - "bedtools_intersectbed", - "cutadapt", - "deeptools_compute_matrix" - ], - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 85, - "visitors": 714, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "ATAC-seq GTM", - "path": "topics/epigenetics/tutorials/cut_and_run/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "ATAC-seq GTM", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-cut_and_run/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/cut_and_run/workflows/main_workflow.ga", - "wfid": "epigenetics-cut_and_run", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": 3.0, - "feedback_number": 2, - "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-14", - "objectives": [ - "Learn how to perform reproducible Infinium Human Methylation BeadChip analysis", - "Visualise differentially methylated positions using UCSC browser" - ], - "pageviews": 5535848, - "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_bitr", - "clusterprofiler_go", - "Cut1", - "chipeakanno_annopeaks", - "Remove beginning1", - "minfi_analysis" - ], - "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": 63, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 272, - "visitors": 1985763, - "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" - } - ], - "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-06-24 00:06:30 +0000", - "name": "Infinium Human Methylation BeadChip", - "path": "topics/epigenetics/tutorials/ewas-suite/workflows/Infinium-Human-Methylation-BeadChip.ga", - "test_results": null, - "tests": true, - "title": "Infinium Human Methylation BeadChip", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-ewas-suite/versions/infinium-human-methylation-beadchip", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/ewas-suite/workflows/Infinium-Human-Methylation-BeadChip.ga", - "wfid": "epigenetics-ewas-suite", - "wfname": "infinium-human-methylation-beadchip", - "workflow": "Infinium-Human-Methylation-BeadChip.ga" - } - ], - "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": "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": [ - "Enrichment analysis", - "Sequence composition calculation", - "Sequence alignment analysis", - "Mapping", - "Sequencing quality control", - "Visualisation", - "Primer removal", - "Read pre-processing", - "Peak calling", - "Gene regulatory network analysis", - "Formatting", - "Read mapping", - "Statistical calculation", - "Data handling", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 4.75, - "feedback_number": 24, - "hands_on": true, - "id": "epigenetics/atac-seq", - "inexact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.fr" - ], - "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-05-29", - "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": 5630149, - "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": [ - "bedtools_intersectbed", - "bedtools_bamtobed", - "Cut1", - "picard_MarkDuplicates", - "pe_histogram", - "wig_to_bigWig", - "cutadapt", - "samtools_idxstats", - "Grep1", - "tp_sort_header_tool", - "bowtie2", - "bamFilter", - "pygenomeTracks", - "fastqc", - "macs2_callpeak", - "Filter1", - "deeptools_compute_matrix", - "deeptools_plot_heatmap" - ], - "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 - }, - { - "name": "UseGalaxy.fr", - "url": "https://usegalaxy.fr/", - "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": 91, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 266, - "visitors": 2033870, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:30 +0000", - "name": "ATAC-seq GTM", - "path": "topics/epigenetics/tutorials/atac-seq/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "ATAC-seq GTM", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-atac-seq/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/atac-seq/workflows/main_workflow.ga", - "wfid": "epigenetics-atac-seq", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [ - "Enrichment analysis", - "Sequence composition calculation", - "Generation", - "Genome indexing", - "Mapping", - "Sequencing quality control", - "Peak calling", - "Gene regulatory network analysis", - "Read mapping", - "Statistical calculation", - "Sequence alignment" - ], - "edam_topic": [ - "ChIP-seq" - ], - "exact_supported_servers": [ - "UseGalaxy.fr", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 5.0, - "feedback_number": 4, - "hands_on": true, - "id": "epigenetics/tal1-binding-site-identification", - "inexact_supported_servers": [ - "Galaxy@AuBi", - "MISSISSIPPI", - "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": "2023-11-03", - "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": 10874, - "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_multi_bam_summary", - "deeptools_plot_correlation", - "deeptools_plot_fingerprint", - "bedtools_intersectbed", - "trimmomatic", - "bwa", - "samtools_idxstats", - "deeptools_bam_compare", - "fastqc", - "deeptools_correct_gc_bias", - "macs2_callpeak", - "deeptools_compute_gc_bias", - "deeptools_compute_matrix", - "deeptools_plot_heatmap" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": 26, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 204, - "visitors": 5651, - "workflows": [ - { - "creators": [], - "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 49322b83-f9ac-40c6-9a69-beb8446a789a[\"Output\\noutput_overlapping_peaks\"];\n 60 --> 49322b83-f9ac-40c6-9a69-beb8446a789a;\n style 49322b83-f9ac-40c6-9a69-beb8446a789a stroke:#2c3143,stroke-width:4px;\n 61[\"bedtools Intersect intervals\"];\n 47 -->|output_narrowpeaks| 61;\n 56 -->|output_narrowpeaks| 61;\n 09aa979e-e03f-433e-85ac-42831a53f3b8[\"Output\\noutput_g1e_peaks\"];\n 61 --> 09aa979e-e03f-433e-85ac-42831a53f3b8;\n style 09aa979e-e03f-433e-85ac-42831a53f3b8 stroke:#2c3143,stroke-width:4px;\n 62[\"bedtools Intersect intervals\"];\n 56 -->|output_narrowpeaks| 62;\n 47 -->|output_narrowpeaks| 62;\n 490bc820-e767-4de3-ad90-b28a891e3e5c[\"Output\\noutput_megakaryocyte_peaks\"];\n 62 --> 490bc820-e767-4de3-ad90-b28a891e3e5c;\n style 490bc820-e767-4de3-ad90-b28a891e3e5c 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-06-24 00:06:31 +0000", - "name": "Identification of the binding sites of the T-cell acute lymphocytic leukemia protein 1 (TAL1)", - "path": "topics/epigenetics/tutorials/tal1-binding-site-identification/workflows/tal1-binding-site-identification-workflow.ga", - "test_results": null, - "tests": true, - "title": "Identification of the binding sites of the T-cell acute lymphocytic leukemia protein 1 (TAL1)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-tal1-binding-site-identification/versions/tal1-binding-site-identification-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/tal1-binding-site-identification/workflows/tal1-binding-site-identification-workflow.ga", - "wfid": "epigenetics-tal1-binding-site-identification", - "wfname": "tal1-binding-site-identification-workflow", - "workflow": "tal1-binding-site-identification-workflow.ga" - } - ], - "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": "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": [ - "Genome indexing", - "Sequence alignment", - "Generation", - "Read mapping" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 3.7777777777777777, - "feedback_number": 9, - "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-03", - "pageviews": 10018, - "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_hicfindtads", - "hicexplorer_hicbuildmatrix", - "hicexplorer_hicplotmatrix", - "hicexplorer_hicplottads", - "bwa_mem", - "hicexplorer_hicpca", - "hicexplorer_hiccorrectmatrix", - "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": 42, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 98, - "visitors": 5448, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Galaxy Workflow Galaxy Hi C", - "path": "topics/epigenetics/tutorials/hicexplorer/workflows/Galaxy-Workflow-Galaxy_Hi-C.ga", - "test_results": null, - "tests": false, - "title": "Galaxy Workflow Galaxy Hi C", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-hicexplorer/versions/galaxy-workflow-galaxy_hi-c", - "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/hicexplorer/workflows/Galaxy-Workflow-Galaxy_Hi-C.ga", - "wfid": "epigenetics-hicexplorer", - "wfname": "galaxy-workflow-galaxy_hi-c", - "workflow": "Galaxy-Workflow-Galaxy_Hi-C.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.1183661" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533192, - "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": 3, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533192, - "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": 1984183 - }, - { - "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": [ - "Phylogenetic tree generation (from molecular sequences)", - "Phylogenetic tree reconstruction", - "Phylogenetic tree generation", - "Multiple sequence alignment", - "Phylogenetic tree analysis", - "Phylogenetic analysis", - "Phylogenetic tree generation (maximum likelihood and Bayesian methods)", - "Sequence analysis" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.5, - "feedback_number": 2, - "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": 238, - "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", - "rbc_mafft", - "iqtree", - "newick_display" - ], - "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": 142, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 108, - "visitors": 190, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-9760-8992", - "name": "Helena Rasche" - }, - { - "class": "Person", - "identifier": "0000-0001-8385-341X", - "name": "Michael Charleston" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Tree Building (imported from uploaded file)", - "path": "topics/evolution/tutorials/abc_intro_phylo/workflows/tree-building.ga", - "test_results": null, - "tests": true, - "title": "Tree Building (imported from uploaded file)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-abc_intro_phylo/versions/tree-building", - "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/abc_intro_phylo/workflows/tree-building.ga", - "wfid": "evolution-abc_intro_phylo", - "wfname": "tree-building", - "workflow": "tree-building.ga" - } - ], - "zenodo_link": "https://zenodo.org/records/11089653" - }, - { - "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": 4.333333333333333, - "feedback_number": 6, - "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": "2023-02-15", - "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": 1857, - "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": [ - "raxml", - "interactive_tool_rstudio", - "upload1" - ], - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 136, - "visitors": 1211, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Mtb phylogeny", - "path": "topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Mtb phylogeny", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_phylogeny/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.ga", - "wfid": "evolution-mtb_phylogeny", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/6010176" - }, - { - "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": "147de996e34f", - "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: 147de996e34f\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": [ - "Antimicrobial resistance prediction", - "Phylogenetic tree generation", - "Phylogenetic tree visualisation", - "Variant calling" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Infectious disease", - "DNA polymorphism" - ], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.0, - "feedback_number": 7, - "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-03-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": 2211, - "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": [ - "snippy", - "tb_variant_filter", - "tp_replace_in_line", - "trimmomatic", - "bcftools_consensus", - "snp_sites", - "tp_sed_tool", - "addName", - "tp_cat", - "upload1", - "collapse_dataset", - "Grep1", - "__MERGE_COLLECTION__", - "tp_easyjoin_tool", - "tb_profiler_profile", - "samtools_view", - "tp_grep_tool", - "snp_dists" - ], - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 191, - "visitors": 1377, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "From BAMs to drug resistance prediction with TB-profiler", - "path": "topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.ga", - "test_results": null, - "tests": false, - "title": "From BAMs to drug resistance prediction with TB-profiler", - "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", - "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", - "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" - }, - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "From Fastqs to VCFs and BAMs", - "path": "topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", - "test_results": null, - "tests": false, - "title": "From Fastqs to VCFs and BAMs", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", - "wfid": "evolution-mtb_transmission", - "wfname": "galaxy-workflow-from_fastqs_to_vcfs_and_bams", - "workflow": "Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga" - }, - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "From VCFs to SNP distance matrix", - "path": "topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "From VCFs to SNP distance matrix", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_transmission/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.ga", - "wfid": "evolution-mtb_transmission", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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-04-17", - "pageviews": 154495, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 157, - "visitors": 63993, - "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-04-17", - "pageviews": 154495, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 157, - "visitors": 63993, - "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-04-23", - "pageviews": 154495, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 157, - "visitors": 63993, - "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-04-23", - "pageviews": 154495, - "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": 11, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 157, - "visitors": 63993, - "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-04-17", - "pageviews": 154495, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 157, - "visitors": 63993, - "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-04-23", - "pageviews": 154495, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 157, - "visitors": 63993, - "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)" - ], - "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-06-24", - "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-06-24", - "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": [ - "get_pdb", - "openbabel_compound_convert", - "ctb_silicos_qed", - "md_converter", - "chembl", - "openbabel_svg_depiction", - "ctb_im_rxn_maker" - ], - "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 - } - ], - "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" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Data management in Medicinal Chemistry workflow", - "path": "topics/fair/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.ga", - "test_results": null, - "tests": true, - "title": "Data management in Medicinal Chemistry workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/fair-med-chem-data/versions/data-management-in-medicinal-chemistry-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/fair/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.ga", - "wfid": "fair-med-chem-data", - "wfname": "data-management-in-medicinal-chemistry-workflow", - "workflow": "Data-management-in-Medicinal-Chemistry-workflow.ga" - } - ] - }, - { - "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-05-29", - "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": 361, - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 107, - "visitors": 242 - }, - { - "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": 2.0, - "feedback_number": 1, - "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-26", - "objectives": [ - "Learn how to make clinical datasets FAIR", - "Recognise why FAIR datasets are important" - ], - "pageviews": 203, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 114, - "visitors": 149, - "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-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-26", - "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": 29, - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 0, - "visitors": 24, - "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-10", - "objectives": [], - "pageviews": 212, - "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": 90, - "visitors": 157 - }, - { - "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": 4.0, - "feedback_number": 3, - "hands_on": true, - "id": "fair/fair-ena", - "inexact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org", - "UseGalaxy.org.au", - "UseGalaxy.fr" - ], - "js_requirements": { - "mathjax": 13195, - "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-03-26", - "objectives": [ - "To populate ENA metadata objects through the Webin portal", - "To submit raw reads to ENA using FTP" - ], - "pageviews": 201, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 66, - "visitors": 160, - "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-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-29", - "objectives": [ - "Learn the FAIR principles", - "Recognise the relationship between FAIR and Open data" - ], - "pageviews": 466, - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 91, - "visitors": 348, - "zenodo_link": "" - }, - { - "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-26", - "objectives": [ - "Learn best practices in data management", - "Learn how to introduce computational reproducibility in your research" - ], - "pageviews": 260, - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 124, - "visitors": 201, - "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": 4.0, - "feedback_number": 1, - "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-26", - "notebook": { - "language": "python" - }, - "objectives": [ - "Create a custom, annotated RO-Crate", - "Use ORCIDs and other linked data to annotate datasets contained within the crate" - ], - "pageviews": 114, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 144, - "visitors": 99 - }, - { - "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-26", - "objectives": [ - "Define the term \u2018metadata\u2019.", - "Recall examples of community/domain standards that apply to data and metadata." - ], - "pageviews": 46, - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 46, - "visitors": 39, - "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" - ], - "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" - }, - { - "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-01-19", - "objectives": [ - "Understanding, viewing and creating Galaxy Workflow Run Crates" - ], - "pageviews": 125, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 79, - "visitors": 102 - }, - { - "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-26", - "objectives": [ - "Learn about metadata and findability", - "Learn how to support system and content curation" - ], - "pageviews": 113, - "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": 26, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 175, - "visitors": 97, - "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-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-26", - "objectives": [ - "Describe why indexed data repositories are important.", - "Summarise resources enabling you to choose a searchable repository." - ], - "pageviews": 14, - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 0, - "visitors": 11, - "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-05-23", - "notebook": { - "language": "bash" - }, - "objectives": [ - "Generate a workflow test using Planemo", - "Understand how testing can be automated with GitHub Actions" - ], - "pageviews": 182, - "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": 62, - "visitors": 165 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-26", - "objectives": [ - "Locate bioimage data repositories", - "Compare repositories to find which are suitable for your data", - "Find out what the requirements are for submitting" - ], - "pageviews": 135, - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 181, - "visitors": 106, - "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-26", - "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": 17, - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 522, - "visitors": 12, - "zenodo_link": "" - }, - { - "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-05-23", - "objectives": [ - "Setup Life Monitor" - ], - "pageviews": 31, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 750, - "visitors": 26 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-04-25", - "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": 130, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 220, - "visitors": 113, - "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-26", - "objectives": [ - "Explain the definition and importance of using identifiers.", - "Illustrate what are the persistent identifiers.", - "Give examples of the structure of persistent identifiers." - ], - "pageviews": 33, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 4, - "visitors": 28, - "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-26", - "objectives": [ - "To be able to map each of the FAIR principles to a dataset in the public domain" - ], - "pageviews": 72, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 98, - "visitors": 52, - "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-03", - "objectives": [ - "Submit raw sequencing reads and metadata to ENA's test server", - "Submit consensus sequence and metadata to ENA's test server" - ], - "pageviews": 4442301, - "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_upload", - "ena_webin_cli" - ], - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 241, - "visitors": 1662033, - "workflows": [ - { - "creators": [], - "license": null, - "mermaid": "flowchart TD\n 0[\"ENA Upload tool\"];\n 1[\"ENA Upload tool\"];", - "modified": "2024-06-24 00:06:31 +0000", - "name": "GTN_ENA_upload_workflow", - "path": "topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "GTN_ENA_upload_workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-upload-data-to-ena/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.ga", - "wfid": "galaxy-interface-upload-data-to-ena", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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/" - } - ] - }, - "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": 4.0, - "feedback_number": 8, - "hands_on": true, - "id": "galaxy-interface/workflow-editor", - "inexact_supported_servers": [ - "MISSISSIPPI" - ], - "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-03", - "objectives": [ - "Understand key aspects of workflows", - "Create clean, non-repetitive workflows" - ], - "pageviews": 5466, - "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": [ - "Show beginning1", - "tp_tac", - "Paste1" - ], - "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": [ - { - "name": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "usegalaxy": false - } - ] - }, - "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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 177, - "visitors": 4285, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Tutorial workflow", - "path": "topics/galaxy-interface/tutorials/workflow-editor/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Tutorial workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-editor/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-editor/workflows/main_workflow.ga", - "wfid": "galaxy-interface-workflow-editor", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - }, - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Subworkflow", - "path": "topics/galaxy-interface/tutorials/workflow-editor/workflows/subworkflow.ga", - "test_results": null, - "tests": false, - "title": "Subworkflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-editor/versions/subworkflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-editor/workflows/subworkflow.ga", - "wfid": "galaxy-interface-workflow-editor", - "wfname": "subworkflow", - "workflow": "subworkflow.ga" - } - ], - "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": 174, - "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": [ - "galaxy_intermine_exchange", - "intermine" - ], - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 153, - "visitors": 123, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Intermine import/export", - "path": "topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Intermine import/export", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-intermine/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.ga", - "wfid": "galaxy-interface-intermine", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3407174" - }, - { - "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": [ - "Tree-based sequence alignment", - "Variant classification" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "hands_on": true, - "id": "galaxy-interface/workflow-automation", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-05-29", - "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": 2636, - "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": [ - "pangolin", - "bcftools_consensus", - "collapse_dataset", - "compose_text_param", - "snpSift_filter" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "usegalaxy": false - }, - { - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 118, - "visitors": 2125, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0002-9464-6640", - "name": "Wolfgang Maier" - } - ], - "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-06-24 00:06:31 +0000", - "name": "vcf2lineage", - "path": "topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "vcf2lineage", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-automation/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.ga", - "wfid": "galaxy-interface-workflow-automation", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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", - "MISSISSIPPI", - "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-05-29", - "objectives": [ - "Understanding, viewing and creating workflow reports" - ], - "pageviews": 830, - "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": [ - "ggplot2_point", - "Cut1", - "upload1", - "Remove beginning1", - "csv_to_tabular", - "Grouping1", - "datamash_ops", - "tp_sorted_uniq" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 184, - "visitors": 567, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "GTN Training: Workflow Reports - Galaxy 101 For Everyone", - "path": "topics/galaxy-interface/tutorials/workflow-reports/workflows/galaxy-101-everyone.ga", - "test_results": null, - "tests": false, - "title": "GTN Training: Workflow Reports - Galaxy 101 For Everyone", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-reports/versions/galaxy-101-everyone", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-reports/workflows/galaxy-101-everyone.ga", - "wfid": "galaxy-interface-workflow-reports", - "wfname": "galaxy-101-everyone", - "workflow": "galaxy-101-everyone.ga" - }, - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "GTN Training: Workflow Reports", - "path": "topics/galaxy-interface/tutorials/workflow-reports/workflows/workflow_reports_final_workflow.ga", - "test_results": null, - "tests": false, - "title": "GTN Training: Workflow Reports", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-reports/versions/workflow_reports_final_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-reports/workflows/workflow_reports_final_workflow.ga", - "wfid": "galaxy-interface-workflow-reports", - "wfname": "workflow_reports_final_workflow", - "workflow": "workflow_reports_final_workflow.ga" - } - ], - "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": 4.0, - "feedback_number": 2, - "hands_on": true, - "id": "galaxy-interface/workflow-parameters", - "inexact_supported_servers": [ - "MISSISSIPPI" - ], - "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-05-29", - "objectives": [ - "Learn how to use Workflow Parameters to improve your Workflows" - ], - "pageviews": 1920, - "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": [ - { - "name": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "usegalaxy": false - } - ] - }, - "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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 125, - "visitors": 1484, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Select First N Lines", - "path": "topics/galaxy-interface/tutorials/workflow-parameters/workflows/cut_n_lines.ga", - "test_results": null, - "tests": false, - "title": "Select First N Lines", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-parameters/versions/cut_n_lines", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-parameters/workflows/cut_n_lines.ga", - "wfid": "galaxy-interface-workflow-parameters", - "wfname": "cut_n_lines", - "workflow": "cut_n_lines.ga" - } - ], - "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/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-06", - "objectives": null, - "pageviews": 5533193, - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183, - "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": 3697213, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 148, - "visitors": 1434318 - }, - { - "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-12", - "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": 4778137, - "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", - "jq", - "snpeff_sars_cov_2", - "tp_cat", - "fasterq_dump", - "fastq_dump", - "query_tabular" - ], - "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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 268, - "visitors": 1762701 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 3.6666666666666665, - "feedback_number": 3, - "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-03", - "objectives": [ - "Have a greater knowledge of how Galaxy handles data downloads and deletions", - "Be able to successfully download and delete their own data" - ], - "pageviews": 8159, - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 92, - "visitors": 6007, - "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": [ - "Genome indexing", - "Sequence alignment", - "Generation", - "Read mapping" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.5, - "feedback_number": 16, - "hands_on": true, - "id": "galaxy-interface/collections", - "inexact_supported_servers": [ - "GalaxyTrakr", - "HyPhy HIV NGS Tools", - "MISSISSIPPI", - "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-11", - "objectives": [ - "Understand and master dataset collections" - ], - "pageviews": 15567, - "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": [ - "bwa_mem", - "snpSift_extractFields", - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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 - } - ] - }, - "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": 31, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 174, - "visitors": 11069, - "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/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": 4.75, - "feedback_number": 4, - "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", - "license": "CC-BY-4.0", - "mod_date": "2024-05-29", - "objectives": [ - "Gain understanding on navigating and manipulating histories" - ], - "pageviews": 4970, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 163, - "visitors": 3774, - "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/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": 4.125, - "feedback_number": 8, - "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-03", - "objectives": [ - "Learn how to set name tags", - "Learn how they are propagated" - ], - "pageviews": 1725, - "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": 11, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 176, - "visitors": 1237, - "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-01-23", - "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": 50, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 172, - "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/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": 1.6666666666666667, - "feedback_number": 6, - "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-03", - "objectives": [ - "Learn how to set group tags", - "Learn how to select group tags in tools" - ], - "pageviews": 3275, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 200, - "visitors": 2381, - "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": 4.6, - "feedback_number": 15, - "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-05-29", - "objectives": [ - "Learn about the Rule Based Uploader" - ], - "pageviews": 3709, - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 265, - "visitors": 2639, - "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/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": 3.0, - "feedback_number": 1, - "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-05-29", - "objectives": [ - "Learn even more about the Rule Based Uploader" - ], - "pageviews": 793, - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 371, - "visitors": 575, - "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": 4.555555555555555, - "feedback_number": 18, - "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-02", - "objectives": [ - "Learn how to extract a workflow from a Galaxy history", - "Learn how to change a workflow using the workflow editor" - ], - "pageviews": 3297, - "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": 12, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 229, - "visitors": 2514, - "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": 5.0, - "feedback_number": 2, - "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-09-28", - "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": 2484, - "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": 11, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 131, - "visitors": 1442, - "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/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": "2023-01-24", - "objectives": null, - "pageviews": 1651, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 155, - "visitors": 1185, - "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": 2.0, - "feedback_number": 4, - "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": 2128, - "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": 12, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 133, - "visitors": 1568, - "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/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": 3.090909090909091, - "feedback_number": 11, - "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-03", - "objectives": [ - "Launch RStudio in Galaxy" - ], - "pageviews": 6509, - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 123, - "visitors": 3975, - "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-15", - "objectives": [ - "Feel confident in searching your history" - ], - "pageviews": 509, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 309, - "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 annotation", - "Coding region prediction", - "Gene prediction", - "Genome visualisation" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Gene and protein families", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 3.764705882352941, - "feedback_number": 17, - "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", - "MISSISSIPPI", - "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-05-29", - "objectives": [ - "Load genome into Galaxy", - "Annotate genome with Prokka", - "View annotations in JBrowse" - ], - "pageviews": 5560175, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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.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": 43, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 259, - "visitors": 1999341, - "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" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Genome Annotation with Prokka ", - "path": "topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", - "test_results": null, - "tests": true, - "title": "Genome Annotation with Prokka ", - "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_", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", - "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" - } - ], - "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": "text_processing", - "owner": "bgruening", - "revisions": "d698c222f354", - "tool_panel_section_label": "Text Manipulation", - "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": "integron_finder", - "owner": "iuc", - "revisions": "4768f7f8e93f", - "tool_panel_section_label": "Annotation", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "isescan", - "owner": "iuc", - "revisions": "19f42b3ea391", - "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: 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: 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: integron_finder\n owner: iuc\n revisions: 4768f7f8e93f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: isescan\n owner: iuc\n revisions: 19f42b3ea391\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": [ - "Structural variation detection", - "Genome assembly", - "Nucleic acid feature detection", - "Protein feature detection", - "Scaffolding", - "Multilocus sequence typing", - "Sequence motif recognition", - "Genome visualisation", - "Genome annotation" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Gene and protein families", - "Sequence analysis", - "Whole genome sequencing", - "Functional genomics", - "Mobile genetic elements" - ], - "exact_supported_servers": [ - "Galaxy@AuBi", - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.fr" - ], - "feedback_mean_note": 1.0, - "feedback_number": 1, - "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": [], - "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-03-13", - "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": 1630, - "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": [ - "tp_tail_tool", - "upload1", - "bakta", - "isescan", - "Grouping1", - "tp_replace_in_column", - "tbl2gff3", - "plasmidfinder", - "integron_finder", - "jbrowse" - ], - "slides": false, - "slides_recordings": false, - "subtopic": "prokaryote", - "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 - } - ], - "inexact": [] - }, - "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/1.1.3", - "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", - "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", - "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.2+galaxy1", - "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy0", - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 149, - "visitors": 1237, - "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" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Bacterial Genome Annotation", - "path": "topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.ga", - "test_results": null, - "tests": true, - "title": "Bacterial Genome Annotation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-bacterial-genome-annotation/versions/bacterial-genome-annotation", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.ga", - "wfid": "genome-annotation-bacterial-genome-annotation", - "wfname": "bacterial-genome-annotation", - "workflow": "Bacterial-Genome-Annotation.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/10572227" - }, - { - "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", - "Differential gene expression analysis", - "Data handling", - "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": 135, - "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": [ - "ncbi_acc_download", - "interactive_tool_jupyter_notebook", - "Remove beginning1", - "antismash", - "ctb_silicos_qed", - "tp_awk_tool", - "edu.tamu.cpt.gff3.customGbkToGff", - "bp_genbank2gff3", - "collapse_dataset", - "ctb_simsearch", - "openbabel_remDuplicates", - "ctb_np-likeness-calculator", - "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": 3, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 47, - "visitors": 115, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Gene Cluster Product Similarity Search ", - "path": "topics/genome-annotation/tutorials/secondary-metabolite-discovery/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Gene Cluster Product Similarity Search ", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-secondary-metabolite-discovery/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/secondary-metabolite-discovery/workflows/main_workflow.ga", - "wfid": "genome-annotation-secondary-metabolite-discovery", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/records/10652998" - }, - { - "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": 5.0, - "feedback_number": 1, - "hands_on": true, - "id": "genome-annotation/hpc-for-lsgc", - "inexact_supported_servers": [ - "GalaxyTrakr", - "UseGalaxy.cz" - ], - "js_requirements": { - "mathjax": 10204, - "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": "2023-11-03", - "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": 5371236, - "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": [ - "gecko", - "tp_awk_tool", - "clustalw", - "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, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 280, - "visitors": 1936631, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "CHROMEISTER chromosome comparison", - "path": "topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/CHROMEISTER_chromosome_comparison.ga", - "test_results": null, - "tests": false, - "title": "CHROMEISTER chromosome comparison", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-hpc-for-lsgc/versions/chromeister_chromosome_comparison", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/CHROMEISTER_chromosome_comparison.ga", - "wfid": "genome-annotation-hpc-for-lsgc", - "wfname": "chromeister_chromosome_comparison", - "workflow": "CHROMEISTER_chromosome_comparison.ga" - }, - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "GECKO pairwise comparison", - "path": "topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/GECKO_pairwise_comparison.ga", - "test_results": null, - "tests": false, - "title": "GECKO pairwise comparison", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-hpc-for-lsgc/versions/gecko_pairwise_comparison", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/GECKO_pairwise_comparison.ga", - "wfid": "genome-annotation-hpc-for-lsgc", - "wfname": "gecko_pairwise_comparison", - "workflow": "GECKO_pairwise_comparison.ga" - } - ], - "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": "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/", - "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 annotation", - "Genome visualisation", - "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": 1061, - "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": [ - "upload1", - "staramr_search", - "bakta", - "Grep1", - "bowtie2", - "tbl2gff3", - "jbrowse" - ], - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 184, - "visitors": 726, - "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" - } - ], - "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 71194973-788a-4f7d-b6f5-3399e5fa5f1f[\"Output\\nstararm_detailed_summary\"];\n 3 --> 71194973-788a-4f7d-b6f5-3399e5fa5f1f;\n style 71194973-788a-4f7d-b6f5-3399e5fa5f1f stroke:#2c3143,stroke-width:4px;\n 4[\"Bakta\"];\n 0 -->|output| 4;\n 554f3cd1-e8d4-4693-99f1-803ebd89b088[\"Output\\nbakta_annotation_summary\"];\n 4 --> 554f3cd1-e8d4-4693-99f1-803ebd89b088;\n style 554f3cd1-e8d4-4693-99f1-803ebd89b088 stroke:#2c3143,stroke-width:4px;\n 5[\"Bowtie2\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 0 -->|output| 5;\n a94993a4-8698-48cd-90ed-63c08c14ede1[\"Output\\nbowtie_mapping_stats\"];\n 5 --> a94993a4-8698-48cd-90ed-63c08c14ede1;\n style a94993a4-8698-48cd-90ed-63c08c14ede1 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 f82af420-c499-43b3-98d9-e82c2468f87a[\"Output\\njbrowse_output\"];\n 8 --> f82af420-c499-43b3-98d9-e82c2468f87a;\n style f82af420-c499-43b3-98d9-e82c2468f87a stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:31 +0000", - "name": "mrsa AMR gene detection", - "path": "topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", - "test_results": null, - "tests": true, - "title": "mrsa AMR gene detection", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-amr-gene-detection/versions/main-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", - "wfid": "genome-annotation-amr-gene-detection", - "wfname": "main-workflow", - "workflow": "main-workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/10572227" - }, - { - "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": 4.6, - "feedback_number": 5, - "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-05-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": 4755339, - "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": [ - "iframe", - "create_or_update", - "list_organism", - "create_account", - "jbrowse" - ], - "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": 40, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 301, - "visitors": 1757138, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Apollo Load Test", - "path": "topics/genome-annotation/tutorials/apollo/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Apollo Load Test", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-apollo/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/apollo/workflows/main_workflow.ga", - "wfid": "genome-annotation-apollo", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [ - "RNA-Seq analysis", - "Genome annotation", - "Mapping", - "Repeat sequence detection", - "Editing" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.fr", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.333333333333333, - "feedback_number": 3, - "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-05-29", - "objectives": [ - "Use Red and RepeatMasker to soft-mask a newly assembled genome" - ], - "pageviews": 8842, - "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": [ - "repeatmasker_wrapper", - "repeatmodeler", - "bedtools_maskfastabed", - "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": 40, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 83, - "visitors": 6716, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-0914-2470", - "name": "Anthony Bretaudeau" - } - ], - "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-06-24 00:06:31 +0000", - "name": "RepeatMasker", - "path": "topics/genome-annotation/tutorials/repeatmasker/workflows/RepeatMasker.ga", - "test_results": null, - "tests": true, - "title": "RepeatMasker", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-repeatmasker/versions/repeatmasker", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/repeatmasker/workflows/RepeatMasker.ga", - "wfid": "genome-annotation-repeatmasker", - "wfname": "repeatmasker", - "workflow": "RepeatMasker.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7085837" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5533194, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 7, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 0, - "visitors": 5, - "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": 3.4615384615384617, - "feedback_number": 13, - "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-03", - "objectives": null, - "pageviews": 60792, - "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": 26, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 86, - "visitors": 32557, - "zenodo_link": "https://doi.org/10.5281/zenodo.1250793" - }, - { - "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": [ - "De-novo assembly", - "Sequence alignment analysis", - "Multiple sequence alignment", - "Coding region prediction", - "Phylogenetic tree generation", - "Transcriptome assembly", - "Database search" - ], - "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": 1395, - "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": [ - "Add_a_column1", - "gops_intersect_1", - "Cut1", - "orfipy", - "bg_diamond_view", - "tp_split_on_column", - "bg_diamond", - "tab2fasta", - "rbc_mafft", - "collapse_dataset", - "cat1", - "regexColumn1", - "join1", - "rapidnj", - "Filter1", - "bg_diamond_makedb" - ], - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 187, - "visitors": 910, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-5987-8032", - "name": "Anton Nekrutenko" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Comparative gene analysis", - "path": "topics/genome-annotation/tutorials/gene-centric/workflows/Comparative-gene-analysis.ga", - "test_results": null, - "tests": false, - "title": "Comparative gene analysis", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-gene-centric/versions/comparative-gene-analysis", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/gene-centric/workflows/Comparative-gene-analysis.ga", - "wfid": "genome-annotation-gene-centric", - "wfname": "comparative-gene-analysis", - "workflow": "Comparative-gene-analysis.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7034885" - }, - { - "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": [ - "Query and retrieval", - "Fold recognition", - "Genome assembly", - "Sequence annotation", - "Homology-based gene prediction", - "Sequence assembly validation", - "Scaffolding", - "Protein feature detection", - "Formatting", - "Sequence motif recognition", - "Genome visualisation", - "Genome annotation", - "Sequence alignment", - "Transcriptome assembly", - "Information extraction" - ], - "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-05-29", - "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": 9774, - "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": [ - "aegean_parseval", - "picard_MergeSamFiles", - "eggnog_mapper", - "busco", - "rna_star", - "funannotate_annotate", - "funannotate_compare", - "interproscan", - "jbrowse", - "funannotate_predict" - ], - "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": 52, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 130, - "visitors": 6344, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-0914-2470", - "name": "Anthony Bretaudeau" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Funannotate", - "path": "topics/genome-annotation/tutorials/funannotate/workflows/funannotate.ga", - "test_results": null, - "tests": true, - "title": "Funannotate", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-funannotate/versions/funannotate", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/funannotate/workflows/funannotate.ga", - "wfid": "genome-annotation-funannotate", - "wfname": "funannotate", - "workflow": "funannotate.ga" - } - ], - "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": [ - "Scaffolding", - "Genome assembly", - "Genome visualisation", - "Genome annotation", - "Sequence annotation", - "Transcriptome assembly", - "Sequence assembly validation" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 4.0, - "feedback_number": 2, - "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": 3973, - "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": [ - "maker", - "busco", - "gffread", - "maker_map_ids", - "fasta-stats", - "jcvi_gff_stats", - "jbrowse" - ], - "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": 194, - "visitors": 2680, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Genome annotation with Maker (short)", - "path": "topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Genome annotation with Maker (short)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-maker-short/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.ga", - "wfid": "genome-annotation-annotation-with-maker-short", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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", - "Read pre-processing", - "Sequence trimming" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Sequence analysis", - "Mobile genetic elements" - ], - "exact_supported_servers": [ - "UseGalaxy.no" - ], - "feedback_mean_note": 4.5, - "feedback_number": 4, - "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-15", - "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": 5545573, - "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": [ - "Add_a_column1", - "Cut1", - "bowtie_wrapper", - "transit_gumbel", - "cutadapt", - "gff_to_prot", - "tp_sort_header_tool", - "__EXTRACT_DATASET__", - "deeptools_bam_coverage", - "tp_easyjoin_tool", - "bg_find_subsequences", - "Filter1" - ], - "slides": true, - "slides_recordings": false, - "subtopic": "prokaryote", - "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": [ - "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": 52, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 255, - "visitors": 1990676, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Essential genes detection with Transposon insertion sequencing", - "path": "topics/genome-annotation/tutorials/tnseq/workflows/essential-genes-detection-transposon-insertion-sequencing-workflow.ga", - "test_results": null, - "tests": true, - "title": "Essential genes detection with Transposon insertion sequencing", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-tnseq/versions/essential-genes-detection-transposon-insertion-sequencing-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/tnseq/workflows/essential-genes-detection-transposon-insertion-sequencing-workflow.ga", - "wfid": "genome-annotation-tnseq", - "wfname": "essential-genes-detection-transposon-insertion-sequencing-workflow", - "workflow": "essential-genes-detection-transposon-insertion-sequencing-workflow.ga" - } - ], - "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": [ - "Genome assembly", - "Sequence annotation", - "Homology-based gene prediction", - "Sequence assembly validation", - "Scaffolding", - "Gene prediction", - "Genome visualisation", - "Ab-initio gene prediction", - "Genome annotation", - "Transcriptome assembly", - "Operation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 3.0, - "feedback_number": 9, - "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": 21070, - "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": [ - "maker", - "busco", - "gffread", - "maker_map_ids", - "augustus_training", - "fasta-stats", - "snap_training", - "jcvi_gff_stats", - "jbrowse" - ], - "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": 37, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 114, - "visitors": 11167, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0003-0914-2470", - "name": "Anthony Bretaudeau" - }, - { - "class": "Organization", - "name": "French National Institute for Agriculture, Food, and Environment (INRAE)" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Genome annotation with Maker ", - "path": "topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Genome annotation with Maker ", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-maker/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.ga", - "wfid": "genome-annotation-annotation-with-maker", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [ - "Query and retrieval", - "Fold recognition", - "Sequence alignment analysis", - "Sequence motif recognition", - "Genome annotation", - "Homology-based gene prediction", - "Information extraction", - "Protein feature 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, - "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-08", - "objectives": [ - "Perform functional annotation using EggNOG-mapper and InterProScan" - ], - "pageviews": 3021, - "priority": 6, - "pub_date": "2022-07-20", - "questions": [ - "How to perform functional annotation on protein sequences?" - ], - "short_id": "T00173", - "short_tools": [ - "eggnog_mapper", - "bg_diamond", - "interproscan", - "ncbi_blastp_wrapper" - ], - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 106, - "visitors": 1986, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-0914-2470", - "name": "Anthony Bretaudeau" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Functional annotation", - "path": "topics/genome-annotation/tutorials/functional/workflows/functional.ga", - "test_results": null, - "tests": true, - "title": "Functional annotation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-functional/versions/functional", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/functional/workflows/functional.ga", - "wfid": "genome-annotation-functional", - "wfname": "functional", - "workflow": "functional.ga" - } - ], - "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": 1470, - "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": [ - "iframe", - "jbrowse", - "create_or_update" - ], - "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": 157, - "visitors": 810, - "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": [ - "Annotation", - "RNA-Seq analysis", - "Classification", - "Sequence annotation", - "Transcriptome assembly" - ], - "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-05-30", - "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": 1041, - "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": [ - "tp_cat", - "gffread", - "stringtie", - "feelnc", - "Extract_features1" - ], - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 134, - "visitors": 749, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0001-7379-9173", - "name": "St\u00e9phanie Robin" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Long non-coding RNAs (lncRNAs) annotation with FEELnc", - "path": "topics/genome-annotation/tutorials/lncrna/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Long non-coding RNAs (lncRNAs) annotation with FEELnc", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-lncrna/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/lncrna/workflows/main_workflow.ga", - "wfid": "genome-annotation-lncrna", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [ - "Sequence composition calculation", - "Genetic variation analysis", - "Validation", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "Statistical calculation", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.fr", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.666666666666667, - "feedback_number": 6, - "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-05-29", - "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": 4158843, - "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": [ - "mageck_count", - "cutadapt", - "tp_awk_tool", - "mageck_test", - "multiqc", - "fastqc", - "volcanoplot", - "mageck_mle" - ], - "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": 18, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 276, - "visitors": 1580557, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Workflow constructed from history 'CRISPR tutorial Kenji'", - "path": "topics/genome-annotation/tutorials/crispr-screen/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Workflow constructed from history 'CRISPR tutorial Kenji'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-crispr-screen/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/crispr-screen/workflows/main_workflow.ga", - "wfid": "genome-annotation-crispr-screen", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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 annotation", - "Coding region prediction", - "Gene prediction", - "Genome visualisation" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Gene and protein families", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 3.764705882352941, - "feedback_number": 17, - "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", - "MISSISSIPPI", - "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-05-29", - "objectives": [ - "Load genome into Galaxy", - "Annotate genome with Prokka", - "View annotations in JBrowse" - ], - "pageviews": 5560176, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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.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": 43, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 259, - "visitors": 1999341, - "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" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Genome Annotation with Prokka ", - "path": "topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", - "test_results": null, - "tests": true, - "title": "Genome Annotation with Prokka ", - "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_", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", - "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" - } - ], - "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": "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", - "Phylogenetic tree generation", - "Phylogenetic tree visualisation", - "Variant calling" - ], - "edam_topic": [ - "Genomics", - "Sequence assembly", - "DNA polymorphism", - "Microbiology", - "Sequence analysis", - "Genetic variation" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.416666666666667, - "feedback_number": 12, - "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-14", - "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": 19648, - "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": [ - "snippy", - "jbrowse" - ], - "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": 36, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 119, - "visitors": 11631, - "workflows": [ - { - "creators": [], - "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 6ed05601-0fad-4f3e-89be-96a54cd23270[\"Output\\nsnippy_fasta\"];\n 5 --> 6ed05601-0fad-4f3e-89be-96a54cd23270;\n style 6ed05601-0fad-4f3e-89be-96a54cd23270 stroke:#2c3143,stroke-width:4px;\n e4b07b54-4fcb-4f24-a16f-0e8a6028e780[\"Output\\nsnippy_tabular\"];\n 5 --> e4b07b54-4fcb-4f24-a16f-0e8a6028e780;\n style e4b07b54-4fcb-4f24-a16f-0e8a6028e780 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 a2787074-75c2-44fc-8a69-0675e87b7f34[\"Output\\njbrowse_html\"];\n 6 --> a2787074-75c2-44fc-8a69-0675e87b7f34;\n style a2787074-75c2-44fc-8a69-0675e87b7f34 stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:34 +0000", - "name": "Microbial Variant Calling", - "path": "topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.ga", - "test_results": null, - "tests": true, - "title": "Microbial Variant Calling", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-microbial-variants/versions/microbial_variant_calling", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.ga", - "wfid": "variant-analysis-microbial-variants", - "wfname": "microbial_variant_calling", - "workflow": "microbial_variant_calling.ga" - } - ], - "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": "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", - "Read mapping", - "Sequence visualisation", - "Mapping" - ], - "edam_topic": [ - "Sequence assembly", - "Genomics", - "Microbiology" - ], - "exact_supported_servers": [], - "feedback_mean_note": 2.0, - "feedback_number": 1, - "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-03-11", - "objectives": [ - "Identification of the most closely related genome to my new assembly", - "Perform sequence comparison to locate rearrangements", - "Identify genes located in deletions" - ], - "pageviews": 11935, - "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": [ - "Cut1", - "tp_replace_in_line", - "mergeCols1", - "tp_replace_in_column", - "fasta_filter_by_length", - "Grep1", - "cat1", - "circos_aln_to_links", - "jbrowse", - "fasta_compute_length", - "collapse_dataset", - "random_lines1", - "bedtools_sortbed", - "lastz_wrapper_2", - "addValue", - "circos", - "join1", - "Filter1", - "bedtools_intersectbed", - "bedtools_complementbed", - "upload1", - "tp_sed_tool", - "tp_cat", - "datamash_ops", - "tp_sort_header_tool", - "circos_interval_to_tiles", - "tp_grep_tool" - ], - "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": 86, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 182, - "visitors": 5828, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Ecoli Comparison", - "path": "topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.ga", - "test_results": null, - "tests": false, - "title": "Ecoli Comparison", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-ecoli_comparison/versions/ecoli-comparison", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.ga", - "wfid": "assembly-ecoli_comparison", - "wfname": "ecoli-comparison", - "workflow": "ecoli-comparison.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3382053" - }, - { - "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/", - "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": [ - "De-novo assembly", - "Sequence composition calculation", - "Genome assembly", - "Sequencing error detection", - "Visualisation", - "Sequencing quality control", - "Mapping assembly", - "Sequence assembly visualisation", - "Sequence assembly validation", - "Cross-assembly", - "Box-Whisker plot plotting", - "Scatter plot plotting", - "Filtering", - "Read mapping", - "Statistical calculation", - "Sequence alignment", - "Sequence contamination filtering" - ], - "edam_topic": [ - "Sequence assembly", - "Whole genome sequencing", - "Public health and epidemiology", - "Genomics", - "Microbiology", - "Antimicrobial Resistance" - ], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.0, - "feedback_number": 2, - "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": 9777, - "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": [ - "flye", - "nanoplot", - "bandage_image", - "polypolish", - "upload1", - "quast", - "porechop", - "CONVERTER_bz2_to_uncompressed", - "bwa_mem2", - "filtlong", - "fastqc", - "fastp" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 205, - "visitors": 6353, - "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" - } - ], - "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-06-24 00:06:29 +0000", - "name": "Genome Assembly of MRSA using Oxford Nanopore MinION (and Illumina data if available)", - "path": "topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.ga", - "test_results": null, - "tests": true, - "title": "Genome Assembly of MRSA using Oxford Nanopore MinION (and Illumina data if available)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-mrsa-nanopore/versions/main-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.ga", - "wfid": "assembly-mrsa-nanopore", - "wfname": "main-workflow", - "workflow": "main-workflow.ga" - } - ], - "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": "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": "bakta", - "owner": "iuc", - "revisions": "728dacaf08a9", - "tool_panel_section_label": "Annotation", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "integron_finder", - "owner": "iuc", - "revisions": "4768f7f8e93f", - "tool_panel_section_label": "Annotation", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "isescan", - "owner": "iuc", - "revisions": "19f42b3ea391", - "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: 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: 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: integron_finder\n owner: iuc\n revisions: 4768f7f8e93f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: isescan\n owner: iuc\n revisions: 19f42b3ea391\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": [ - "Structural variation detection", - "Genome assembly", - "Nucleic acid feature detection", - "Protein feature detection", - "Scaffolding", - "Multilocus sequence typing", - "Sequence motif recognition", - "Genome visualisation", - "Genome annotation" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Gene and protein families", - "Sequence analysis", - "Whole genome sequencing", - "Functional genomics", - "Mobile genetic elements" - ], - "exact_supported_servers": [ - "Galaxy@AuBi", - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.fr" - ], - "feedback_mean_note": 1.0, - "feedback_number": 1, - "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": [], - "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-03-13", - "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": 1630, - "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": [ - "tp_tail_tool", - "upload1", - "bakta", - "isescan", - "Grouping1", - "tp_replace_in_column", - "tbl2gff3", - "plasmidfinder", - "integron_finder", - "jbrowse" - ], - "slides": false, - "slides_recordings": false, - "subtopic": "prokaryote", - "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 - } - ], - "inexact": [] - }, - "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/1.1.3", - "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", - "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", - "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.2+galaxy1", - "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy0", - "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": 8, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 149, - "visitors": 1237, - "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" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Bacterial Genome Annotation", - "path": "topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.ga", - "test_results": null, - "tests": true, - "title": "Bacterial Genome Annotation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-bacterial-genome-annotation/versions/bacterial-genome-annotation", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.ga", - "wfid": "genome-annotation-bacterial-genome-annotation", - "wfname": "bacterial-genome-annotation", - "workflow": "Bacterial-Genome-Annotation.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/10572227" - }, - { - "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/", - "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 annotation", - "Genome visualisation", - "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": 1061, - "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": [ - "upload1", - "staramr_search", - "bakta", - "Grep1", - "bowtie2", - "tbl2gff3", - "jbrowse" - ], - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 184, - "visitors": 726, - "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" - } - ], - "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 71194973-788a-4f7d-b6f5-3399e5fa5f1f[\"Output\\nstararm_detailed_summary\"];\n 3 --> 71194973-788a-4f7d-b6f5-3399e5fa5f1f;\n style 71194973-788a-4f7d-b6f5-3399e5fa5f1f stroke:#2c3143,stroke-width:4px;\n 4[\"Bakta\"];\n 0 -->|output| 4;\n 554f3cd1-e8d4-4693-99f1-803ebd89b088[\"Output\\nbakta_annotation_summary\"];\n 4 --> 554f3cd1-e8d4-4693-99f1-803ebd89b088;\n style 554f3cd1-e8d4-4693-99f1-803ebd89b088 stroke:#2c3143,stroke-width:4px;\n 5[\"Bowtie2\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 0 -->|output| 5;\n a94993a4-8698-48cd-90ed-63c08c14ede1[\"Output\\nbowtie_mapping_stats\"];\n 5 --> a94993a4-8698-48cd-90ed-63c08c14ede1;\n style a94993a4-8698-48cd-90ed-63c08c14ede1 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 f82af420-c499-43b3-98d9-e82c2468f87a[\"Output\\njbrowse_output\"];\n 8 --> f82af420-c499-43b3-98d9-e82c2468f87a;\n style f82af420-c499-43b3-98d9-e82c2468f87a stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:31 +0000", - "name": "mrsa AMR gene detection", - "path": "topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", - "test_results": null, - "tests": true, - "title": "mrsa AMR gene detection", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-amr-gene-detection/versions/main-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", - "wfid": "genome-annotation-amr-gene-detection", - "wfname": "main-workflow", - "workflow": "main-workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/10572227" - }, - { - "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": 4.6, - "feedback_number": 5, - "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-05-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": 4755340, - "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": [ - "iframe", - "create_or_update", - "list_organism", - "create_account", - "jbrowse" - ], - "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": 40, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 301, - "visitors": 1757138, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Apollo Load Test", - "path": "topics/genome-annotation/tutorials/apollo/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Apollo Load Test", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-apollo/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/apollo/workflows/main_workflow.ga", - "wfid": "genome-annotation-apollo", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4889110" - }, - { - "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": 174, - "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": [ - "galaxy_intermine_exchange", - "intermine" - ], - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 153, - "visitors": 123, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Intermine import/export", - "path": "topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Intermine import/export", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-intermine/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.ga", - "wfid": "galaxy-interface-intermine", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3407174" - }, - { - "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", - "MISSISSIPPI", - "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": 5538200, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 289, - "visitors": 1987889, - "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": 7, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 0, - "visitors": 5, - "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": [ - "Sequence composition calculation", - "Generation", - "Read mapping", - "Genome visualisation", - "Statistical calculation", - "Genome indexing", - "Sequence alignment", - "Sequencing quality control" - ], - "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", - "MISSISSIPPI", - "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": 811, - "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": [ - "bwa_mem", - "fastqc", - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 259, - "visitors": 616, - "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": [ - "Query and retrieval", - "Fold recognition", - "Genome assembly", - "Sequence annotation", - "Homology-based gene prediction", - "Sequence assembly validation", - "Scaffolding", - "Protein feature detection", - "Formatting", - "Sequence motif recognition", - "Genome visualisation", - "Genome annotation", - "Sequence alignment", - "Transcriptome assembly", - "Information extraction" - ], - "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-05-29", - "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": 9774, - "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": [ - "aegean_parseval", - "picard_MergeSamFiles", - "eggnog_mapper", - "busco", - "rna_star", - "funannotate_annotate", - "funannotate_compare", - "interproscan", - "jbrowse", - "funannotate_predict" - ], - "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": 52, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 130, - "visitors": 6344, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-0914-2470", - "name": "Anthony Bretaudeau" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Funannotate", - "path": "topics/genome-annotation/tutorials/funannotate/workflows/funannotate.ga", - "test_results": null, - "tests": true, - "title": "Funannotate", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-funannotate/versions/funannotate", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/funannotate/workflows/funannotate.ga", - "wfid": "genome-annotation-funannotate", - "wfname": "funannotate", - "workflow": "funannotate.ga" - } - ], - "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": [ - "Scaffolding", - "Genome assembly", - "Genome visualisation", - "Genome annotation", - "Sequence annotation", - "Transcriptome assembly", - "Sequence assembly validation" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 4.0, - "feedback_number": 2, - "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": 3973, - "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": [ - "maker", - "busco", - "gffread", - "maker_map_ids", - "fasta-stats", - "jcvi_gff_stats", - "jbrowse" - ], - "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": 194, - "visitors": 2680, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Genome annotation with Maker (short)", - "path": "topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Genome annotation with Maker (short)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-maker-short/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.ga", - "wfid": "genome-annotation-annotation-with-maker-short", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [ - "Genome assembly", - "Sequence annotation", - "Homology-based gene prediction", - "Sequence assembly validation", - "Scaffolding", - "Gene prediction", - "Genome visualisation", - "Ab-initio gene prediction", - "Genome annotation", - "Transcriptome assembly", - "Operation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 3.0, - "feedback_number": 9, - "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": 21070, - "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": [ - "maker", - "busco", - "gffread", - "maker_map_ids", - "augustus_training", - "fasta-stats", - "snap_training", - "jcvi_gff_stats", - "jbrowse" - ], - "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": 37, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 114, - "visitors": 11167, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0003-0914-2470", - "name": "Anthony Bretaudeau" - }, - { - "class": "Organization", - "name": "French National Institute for Agriculture, Food, and Environment (INRAE)" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Genome annotation with Maker ", - "path": "topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Genome annotation with Maker ", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-maker/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.ga", - "wfid": "genome-annotation-annotation-with-maker", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": 1470, - "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": [ - "iframe", - "jbrowse", - "create_or_update" - ], - "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": 157, - "visitors": 810, - "zenodo_link": "https://zenodo.org/record/3270822" - }, - { - "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": 2199, - "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_cellprofiler", - "cp_measure_object_intensity", - "cp_identify_primary_objects", - "cp_save_images", - "unzip", - "cp_overlay_outlines", - "cp_tile", - "cp_color_to_gray", - "cp_track_objects", - "cp_export_to_spreadsheet", - "cp_common", - "cp_measure_object_size_shape" - ], - "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": 34, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 61, - "visitors": 1738, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "CP_object_tracking_example", - "path": "topics/imaging/tutorials/object-tracking-using-cell-profiler/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "CP_object_tracking_example", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-object-tracking-using-cell-profiler/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/object-tracking-using-cell-profiler/workflows/main_workflow.ga", - "wfid": "imaging-object-tracking-using-cell-profiler", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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": [], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 5.0, - "feedback_number": 4, - "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" - ], - "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": 2773, - "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_count_objects", - "ip_threshold", - "ip_binary_to_labelimage", - "unzip", - "ip_histogram_equalization", - "ip_imageinfo", - "ip_convertimage", - "ip_filter_standard", - "ip_overlay_images" - ], - "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 - } - ] - }, - "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": 31, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 100, - "visitors": 1900, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0002-2315-9247", - "name": "Till Korten", - "url": "https://github.com/thawn/" - } - ], - "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-06-24 00:06:31 +0000", - "name": "Workflow constructed from Tutorial 'Introduction to image analysis using Galaxy'", - "path": "topics/imaging/tutorials/imaging-introduction/workflows/Galaxy-Workflow-GTN_Tutorial__Introduction_to_Imaging.ga", - "test_results": null, - "tests": true, - "title": "Workflow constructed from Tutorial 'Introduction to image analysis using Galaxy'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-imaging-introduction/versions/galaxy-workflow-gtn_tutorial__introduction_to_imaging", - "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/imaging-introduction/workflows/Galaxy-Workflow-GTN_Tutorial__Introduction_to_Imaging.ga", - "wfid": "imaging-imaging-introduction", - "wfname": "galaxy-workflow-gtn_tutorial__introduction_to_imaging", - "workflow": "Galaxy-Workflow-GTN_Tutorial__Introduction_to_Imaging.ga" - } - ], - "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" - ], - "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-03", - "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": 5538008, - "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_cellprofiler", - "cp_measure_image_area_occupied", - "cp_relate_objects", - "cp_measure_texture", - "cp_convert_objects_to_image", - "cp_image_math", - "cp_measure_image_intensity", - "cp_measure_image_quality", - "cp_display_data_on_image", - "cp_measure_granularity", - "cp_common", - "cp_save_images", - "idr_download_by_ids", - "cp_mask_image", - "cp_export_to_spreadsheet", - "cp_gray_to_color", - "cp_measure_object_intensity", - "cp_identify_primary_objects", - "cp_enhance_or_suppress_features", - "cp_measure_object_size_shape" - ], - "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 - } - ] - }, - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 229, - "visitors": 1987355, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "CP_pipeline_IDR_training", - "path": "topics/imaging/tutorials/tutorial-CP/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "CP_pipeline_IDR_training", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-tutorial-CP/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/tutorial-CP/workflows/main_workflow.ga", - "wfid": "imaging-tutorial-CP", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "" - }, - { - "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-03", - "objectives": [ - "Understand the tools available in Galaxy for multiplex tissue imaging analysis", - "Analyze and visualize publicly available TMA data using Galaxy" - ], - "pageviews": 911, - "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": [ - "quantification", - "scimap_mcmicro_to_anndata", - "basic_illumination", - "rename_tiff_channels", - "vitessce_spatial", - "unet_coreograph", - "scimap_phenotyping", - "ashlar", - "ip_convertimage", - "mesmer" - ], - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 112, - "visitors": 660, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "GTN_Exemplar_002_TMA_workflow", - "path": "topics/imaging/tutorials/multiplex-tissue-imaging-TMA/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "GTN_Exemplar_002_TMA_workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-multiplex-tissue-imaging-TMA/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/multiplex-tissue-imaging-TMA/workflows/main_workflow.ga", - "wfid": "imaging-multiplex-tissue-imaging-TMA", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 5.0, - "feedback_number": 2, - "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" - ], - "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": 685, - "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_threshold", - "collapse_dataset", - "unzip", - "ip_2d_feature_extraction", - "ip_2d_split_binaryimage_by_watershed", - "ip_filter_standard", - "ip_2d_filter_segmentation_by_features" - ], - "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 - } - ] - }, - "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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 141, - "visitors": 523, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0002-2315-9247", - "name": "Till Korten", - "url": "https://github.com/thawn/" - } - ], - "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-06-24 00:06:31 +0000", - "name": "analyze_screen", - "path": "topics/imaging/tutorials/hela-screen-analysis/workflows/analyze_screen.ga", - "test_results": null, - "tests": true, - "title": "analyze_screen", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-hela-screen-analysis/versions/analyze_screen", - "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/hela-screen-analysis/workflows/analyze_screen.ga", - "wfid": "imaging-hela-screen-analysis", - "wfname": "analyze_screen", - "workflow": "analyze_screen.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0002-2315-9247", - "name": "Till Korten", - "url": "https://github.com/thawn/" - } - ], - "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-06-24 00:06:31 +0000", - "name": "feature_extraction", - "path": "topics/imaging/tutorials/hela-screen-analysis/workflows/feature_extraction.ga", - "test_results": null, - "tests": true, - "title": "feature_extraction", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-hela-screen-analysis/versions/feature_extraction", - "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/hela-screen-analysis/workflows/feature_extraction.ga", - "wfid": "imaging-hela-screen-analysis", - "wfname": "feature_extraction", - "workflow": "feature_extraction.ga" - } - ], - "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-06-24", - "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-06-24", - "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-06-24", - "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-06-24", - "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": 4.1875, - "feedback_number": 80, - "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-05-03", - "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": 29442, - "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": [ - "Add_a_column1", - "tp_tail_tool", - "Cut1", - "get_flanks1", - "upload1", - "CONVERTER_interval_to_bed_0", - "Grouping1", - "tp_replace_in_column", - "tp_sort_header_tool", - "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 - } - ], - "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": 126, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 202, - "visitors": 17448, - "workflows": [ - { - "creators": [], - "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 58296e55-72bc-4d98-b0be-f1c9d7413278[\"Output\\nchr_count\"];\n 9 --> 58296e55-72bc-4d98-b0be-f1c9d7413278;\n style 58296e55-72bc-4d98-b0be-f1c9d7413278 stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:32 +0000", - "name": "Galaxy Introduction Peaks2Genes - Part 1", - "path": "topics/introduction/tutorials/galaxy-intro-peaks2genes/workflows/Galaxy-Introduction-Peaks2Genes-Part-1-Workflow.ga", - "test_results": null, - "tests": true, - "title": "Galaxy Introduction Peaks2Genes - Part 1", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-peaks2genes/versions/galaxy-introduction-peaks2genes-part-1-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-peaks2genes/workflows/Galaxy-Introduction-Peaks2Genes-Part-1-Workflow.ga", - "wfid": "introduction-galaxy-intro-peaks2genes", - "wfname": "galaxy-introduction-peaks2genes-part-1-workflow", - "workflow": "Galaxy-Introduction-Peaks2Genes-Part-1-Workflow.ga" - } - ], - "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": "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" - ], - "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" - }, - { - "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": 4.333333333333333, - "feedback_number": 3, - "hands_on": true, - "id": "introduction/data-manipulation-olympics", - "inexact_supported_servers": [], - "js_requirements": { - "mathjax": 53917, - "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": "2023-11-03", - "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": 4590, - "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": [ - "", - "Cut1", - "Grouping1", - "cat1", - "tp_sorted_uniq", - "Add_a_column1", - "Count1", - "tp_split_on_column", - "regexColumn1", - "tabular_to_csv", - "wc_gnu", - "Remove beginning1", - "Show beginning1", - "join1", - "Filter1", - "upload1", - "tp_cat", - "datamash_ops", - "tp_sort_header_tool" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 215, - "visitors": 2895, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN Tutorial: Data manipulation Olympics - all steps and exercises", - "path": "topics/introduction/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.ga", - "test_results": null, - "tests": false, - "title": "GTN Tutorial: Data manipulation Olympics - all steps and exercises", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-data-manipulation-olympics/versions/data_manipulation_olympics_with_exercises", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.ga", - "wfid": "introduction-data-manipulation-olympics", - "wfname": "data_manipulation_olympics_with_exercises", - "workflow": "data_manipulation_olympics_with_exercises.ga" - } - ], - "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": 3.75, - "feedback_number": 4, - "hands_on": true, - "id": "introduction/galaxy-reproduce", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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": 2253, - "pub_date": "2021-08-25", - "questions": [ - "How to reproduce published Galaxy results (workflows and histories)" - ], - "short_id": "T00192", - "short_tools": [ - "ggplot2_point", - "Cut1", - "upload1", - "Remove beginning1", - "csv_to_tabular", - "Grouping1", - "datamash_ops", - "tp_sorted_uniq" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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 - } - ] - }, - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 282, - "visitors": 1627, - "workflows": [ - { - "creators": [], - "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 1394ea6b-7686-4d4c-95d3-7834868b85fd[\"Output\\ndatamash_output\"];\n 2 --> 1394ea6b-7686-4d4c-95d3-7834868b85fd;\n style 1394ea6b-7686-4d4c-95d3-7834868b85fd 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 5ce230d3-aa00-40d7-bc71-380c5609c323[\"Output\\ngroup1\"];\n 5 --> 5ce230d3-aa00-40d7-bc71-380c5609c323;\n style 5ce230d3-aa00-40d7-bc71-380c5609c323 stroke:#2c3143,stroke-width:4px;\n 6[\"Group\"];\n 3 -->|out_file1| 6;\n 06b82bb1-b8ef-4d63-a481-67ba78d35585[\"Output\\ngroup2\"];\n 6 --> 06b82bb1-b8ef-4d63-a481-67ba78d35585;\n style 06b82bb1-b8ef-4d63-a481-67ba78d35585 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-06-24 00:06:32 +0000", - "name": "GTN Training: Galaxy 101 For Everyone", - "path": "topics/introduction/tutorials/galaxy-reproduce/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "GTN Training: Galaxy 101 For Everyone", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-reproduce/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-reproduce/workflows/main_workflow.ga", - "wfid": "introduction-galaxy-reproduce", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": 4.734939759036145, - "feedback_number": 83, - "hands_on": true, - "id": "introduction/galaxy-intro-strands", - "inexact_supported_servers": [ - "MISSISSIPPI" - ], - "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-05-29", - "objectives": [ - "Learn some of the basic concepts of genomics and bioinformatics", - "Familiarize yourself with the basics of Galaxy" - ], - "pageviews": 27385, - "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": [ - "gene2exon1", - "tp_cat", - "cat1", - "gops_intersect_1", - "Filter1" - ], - "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": [ - { - "name": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "usegalaxy": false - } - ] - }, - "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": 78, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 210, - "visitors": 16811, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Galaxy Intro Strands 2", - "path": "topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands-2.ga", - "test_results": null, - "tests": false, - "title": "Galaxy Intro Strands 2", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-strands/versions/galaxy-workflowlaxy-intro-strands-2", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands-2.ga", - "wfid": "introduction-galaxy-intro-strands", - "wfname": "galaxy-workflowlaxy-intro-strands-2", - "workflow": "Galaxy-Workflow-galaxy-intro-strands-2.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Galaxy Intro Strands", - "path": "topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands.ga", - "test_results": null, - "tests": false, - "title": "Galaxy Intro Strands", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-strands/versions/galaxy-workflowlaxy-intro-strands", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands.ga", - "wfid": "introduction-galaxy-intro-strands", - "wfname": "galaxy-workflowlaxy-intro-strands", - "workflow": "Galaxy-Workflow-galaxy-intro-strands.ga" - } - ], - "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": "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": [ - "Generation", - "Sequence alignment", - "Validation", - "Genome indexing", - "Sequencing quality control", - "Formatting", - "SNP detection", - "Read mapping", - "Data handling", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.1521739130434785, - "feedback_number": 46, - "hands_on": true, - "id": "introduction/galaxy-intro-ngs-data-managment", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-11", - "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": 28552, - "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": [ - "samtools_view", - "picard_MarkDuplicates", - "samtools_stats", - "snpeff_sars_cov_2", - "fasterq_dump", - "collapse_dataset", - "Grep1", - "multiqc", - "lofreq_indelqual", - "snpSift_extractFields", - "tp_cut_tool", - "bwa_mem", - "fastp", - "lofreq_viterbi", - "lofreq_call" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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 - } - ] - }, - "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": 59, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 199, - "visitors": 15943, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "NGS_tutorial", - "path": "topics/introduction/tutorials/galaxy-intro-ngs-data-managment/workflows/ngs_intro_workflow.ga", - "test_results": null, - "tests": false, - "title": "NGS_tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-ngs-data-managment/versions/ngs_intro_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-ngs-data-managment/workflows/ngs_intro_workflow.ga", - "wfid": "introduction-galaxy-intro-ngs-data-managment", - "wfname": "ngs_intro_workflow", - "workflow": "ngs_intro_workflow.ga" - } - ], - "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-03", - "pageviews": 5533197, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-16", - "objectives": null, - "pageviews": 5533197, - "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": 37, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183, - "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-03", - "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": 292, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 216, - "visitors": 245 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 2.3, - "feedback_number": 10, - "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": 9746, - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 94, - "visitors": 6623, - "zenodo_link": "" - }, - { - "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": "ce9cd02d5b88", - "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": "3d0c7bdf12f5", - "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: ce9cd02d5b88\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: 3d0c7bdf12f5\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" - ] - }, - "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" - } - ], - "dir": "topics/introduction/tutorials/galaxy-intro-short", - "edam_operation": [ - "Statistical calculation", - "Sequence composition calculation", - "Sequencing quality control" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.780442804428044, - "feedback_number": 542, - "hands_on": true, - "id": "introduction/galaxy-intro-short", - "inexact_supported_servers": [ - "Galaxy@Pasteur", - "GalaxyTrakr", - "MISSISSIPPI", - "UseGalaxy.cz", - "UseGalaxy.fr", - "UseGalaxy.no", - "UseGalaxy.org.au" - ], - "js_requirements": { - "mathjax": null, - "mermaid": false - }, - "key_points": [ - "The Galaxy interface has tools on the left, 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-05-03", - "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": 5590435, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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.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+galaxy0", - "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72", - "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0" - ], - "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": 49, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 421, - "visitors": 2020566, - "workflows": [ - { - "creators": [], - "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 a90d4623-6820-45c9-8c49-e3d32289eadd[\"Output\\nfilter1\"];\n 2 --> a90d4623-6820-45c9-8c49-e3d32289eadd;\n style a90d4623-6820-45c9-8c49-e3d32289eadd stroke:#2c3143,stroke-width:4px;\n 3[\"Filter by quality\"];\n 0 -->|output| 3;\n f3d81fc4-3052-4a14-81e3-5ab30fece3b3[\"Output\\nfilter2\"];\n 3 --> f3d81fc4-3052-4a14-81e3-5ab30fece3b3;\n style f3d81fc4-3052-4a14-81e3-5ab30fece3b3 stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:32 +0000", - "name": "Galaxy Intro Short", - "path": "topics/introduction/tutorials/galaxy-intro-short/workflows/Galaxy-Workflow-galaxy-intro-short.ga", - "test_results": null, - "tests": false, - "title": "Galaxy Intro Short", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-short/versions/galaxy-workflowlaxy-intro-short", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-short/workflows/Galaxy-Workflow-galaxy-intro-short.ga", - "wfid": "introduction-galaxy-intro-short", - "wfname": "galaxy-workflowlaxy-intro-short", - "workflow": "Galaxy-Workflow-galaxy-intro-short.ga" - } - ], - "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": 4.621621621621622, - "feedback_number": 148, - "hands_on": true, - "id": "introduction/galaxy-intro-101", - "inexact_supported_servers": [ - "Galaxy@AuBi", - "GalaxyTrakr", - "MISSISSIPPI", - "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-05-29", - "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": 50545, - "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", - "upload1", - "datamash_ops", - "tp_sort_header_tool", - "tp_head_tool", - "comp1" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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 - } - ] - }, - "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": 132, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 199, - "visitors": 29763, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-5987-8032", - "name": "Anton Nekrutenko" - }, - { - "class": "Person", - "identifier": "0000-0001-9760-8992", - "name": "Helena Rasche" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Find exons with the highest number of features", - "path": "topics/introduction/tutorials/galaxy-intro-101/workflows/galaxy-intro-101-workflow.ga", - "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", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-101/versions/galaxy-intro-101-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-101/workflows/galaxy-intro-101-workflow.ga", - "wfid": "introduction-galaxy-intro-101", - "wfname": "galaxy-intro-101-workflow", - "workflow": "galaxy-intro-101-workflow.ga" - } - ], - "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": 4.761904761904762, - "feedback_number": 63, - "hands_on": true, - "id": "introduction/galaxy-intro-101-everyone", - "inexact_supported_servers": [ - "Galaxy@AuBi", - "MISSISSIPPI", - "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-13", - "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": 23306, - "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": [ - "ggplot2_point", - "Cut1", - "upload1", - "Remove beginning1", - "csv_to_tabular", - "Grouping1", - "datamash_ops", - "tp_sorted_uniq" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": 80, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 254, - "visitors": 13773, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN Training: Galaxy 101 For Everyone", - "path": "topics/introduction/tutorials/galaxy-intro-101-everyone/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "GTN Training: Galaxy 101 For Everyone", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-101-everyone/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-101-everyone/workflows/main_workflow.ga", - "wfid": "introduction-galaxy-intro-101-everyone", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [ - "Validation", - "Sequencing quality control", - "Sequence contamination filtering" - ], - "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": [ - "MISSISSIPPI", - "UseGalaxy.no" - ], - "js_requirements": { - "mathjax": 7106, - "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-11", - "objectives": [ - "Learn about QCing Illumina and Element data", - "Learn about fastp", - "Learn about multiqc" - ], - "pageviews": 124, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "usegalaxy": false - }, - { - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 250, - "visitors": 82, - "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-05-31", - "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": 150, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 143, - "visitors": 100, - "workflows": [ - { - "creators": [ - { - "class": "Organization", - "name": "Muon Spectroscopy Computational Project", - "url": "https://muon-spectroscopy-computational-project.github.io/" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Finding the Muon Stopping Site: pymuon-suite in Galaxy", - "path": "topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/workflows/muairss-uep.ga", - "test_results": null, - "tests": true, - "title": "Finding the Muon Stopping Site: pymuon-suite in Galaxy", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/materials-science-muon-stopping-sites-muairss-uep/versions/muairss-uep", - "url": "https://training.galaxyproject.org/training-material/topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/workflows/muairss-uep.ga", - "wfid": "materials-science-muon-stopping-sites-muairss-uep", - "wfname": "muairss-uep", - "workflow": "muairss-uep.ga" - } - ], - "zenodo_link": "https://zenodo.org/records/10219558" - }, - { - "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": [ - "Standardisation and normalisation", - "Clustering", - "Format validation", - "Correlation", - "Filtering", - "Spectral library search", - "Formatting", - "Imputation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "hands_on": true, - "id": "metabolomics/gc_ms_with_xcms", - "inexact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.fr" - ], - "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-03", - "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": 1591, - "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": [ - "abims_xcms_group", - "matchms_similarity", - "abims_xcms_xcmsSet", - "matchms_formatter", - "xcms_merge", - "riassigner", - "waveica", - "msnbase_readmsdata", - "ramclustr", - "msconvert", - "ramclustr_define_experiment", - "abims_xcms_retcor", - "abims_xcms_fillPeaks", - "matchms_filtering" - ], - "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 - } - ] - }, - "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": 54, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 104, - "visitors": 1167, - "workflows": [ - { - "creators": [ - { - "class": "Organization", - "email": "mailto:GalaxyToolsDevelopmentandDeployment@space.muni.cz", - "name": "RECETOX" - } - ], - "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-06-24 00:06:32 +0000", - "name": "GC MS using XCMS", - "path": "topics/metabolomics/tutorials/gc_ms_with_xcms/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "GC MS using XCMS", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/metabolomics-gc_ms_with_xcms/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/gc_ms_with_xcms/workflows/main_workflow.ga", - "wfid": "metabolomics-gc_ms_with_xcms", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7890956" - }, - { - "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-03", - "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": 2367, - "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": [ - "maldi_quant_preprocessing", - "join_files_on_column_fuzzy", - "cardinal_mz_images", - "cardinal_classification", - "Grep1", - "cardinal_preprocessing", - "cardinal_segmentations", - "cardinal_quality_report", - "maldi_quant_peak_detection", - "Filter1", - "Summary_Statistics1", - "cardinal_combine" - ], - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 110, - "visitors": 1602, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "MSI Finding Diff Analytes", - "path": "topics/metabolomics/tutorials/msi-finding-nglycans/workflows/msi-finding-diff-analytes.ga", - "test_results": null, - "tests": false, - "title": "MSI Finding Diff Analytes", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/metabolomics-msi-finding-nglycans/versions/msi-finding-diff-analytes", - "url": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/msi-finding-nglycans/workflows/msi-finding-diff-analytes.ga", - "wfid": "metabolomics-msi-finding-nglycans", - "wfname": "msi-finding-diff-analytes", - "workflow": "msi-finding-diff-analytes.ga" - } - ], - "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": 4.666666666666667, - "feedback_number": 3, - "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-03", - "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": 3530, - "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_data_exporter", - "cardinal_spectra_plots", - "cardinal_filtering", - "cardinal_mz_images", - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 106, - "visitors": 2413, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "MSI Workflow: spatial distribution", - "path": "topics/metabolomics/tutorials/msi-analyte-distribution/workflows/wf_MSI_distribution.ga", - "test_results": null, - "tests": false, - "title": "MSI Workflow: spatial distribution", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/metabolomics-msi-analyte-distribution/versions/wf_msi_distribution", - "url": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/msi-analyte-distribution/workflows/wf_MSI_distribution.ga", - "wfid": "metabolomics-msi-analyte-distribution", - "wfname": "wf_msi_distribution", - "workflow": "wf_MSI_distribution.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/484496" - }, - { - "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": [], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 5.0, - "feedback_number": 6, - "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-03", - "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": 17666, - "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": [ - "abims_xcms_retcor", - "abims_xcms_group", - "Univariate", - "xcms_plot_chromatogram", - "abims_xcms_xcmsSet", - "Batch_correction", - "xcms_merge", - "quality_metrics", - "msnbase_readmsdata", - "abims_CAMERA_annotateDiffreport", - "wsdl_hmdb", - "generic_filter", - "abims_xcms_fillPeaks" - ], - "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": 60, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 98, - "visitors": 10293, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Workflow Constructed From History 'imported: testpourGCC'", - "path": "topics/metabolomics/tutorials/lcms/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Workflow Constructed From History 'imported: testpourGCC'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/metabolomics-lcms/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/lcms/workflows/main_workflow.ga", - "wfid": "metabolomics-lcms", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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/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": 5533198, - "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": 3, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "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": [], - "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-03", - "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": 5540802, - "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": [ - "abims_xcms_group", - "xcms_plot_chromatogram", - "abims_xcms_xcmsSet", - "xcms_merge", - "intens_check", - "abims_xcms_summary", - "abims_CAMERA_annotateDiffreport", - "msnbase_readmsdata", - "idchoice", - "xcms_export_samplemetadata", - "abims_xcms_retcor", - "abims_xcms_fillPeaks" - ], - "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": 31, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 291, - "visitors": 1988771, - "zenodo_link": "https://zenodo.org/record/3757956" - }, - { - "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": [], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.fr", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 2.5, - "feedback_number": 2, - "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-03", - "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": 1968, - "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_group", - "abims_xcms_xcmsSet", - "xcms_merge", - "msnbase_readmsdata", - "abims_xcms_fillPeaks" - ], - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 107, - "visitors": 1134, - "zenodo_link": "https://zenodo.org/record/3244991" - }, - { - "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": 5.0, - "feedback_number": 1, - "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-03", - "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": 2502, - "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": [ - "Multivariate", - "Batch_correction", - "intens_check", - "quality_metrics", - "generic_filter", - "normalization" - ], - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 119, - "visitors": 1792, - "zenodo_link": "https://zenodo.org/record/5179809" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": [ - "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": "introduction_slides", - "license": "CC-BY-4.0", - "logo": "GTN", - "mod_date": "2024-05-29", - "pageviews": 5533198, - "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" - } - ], - "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": false - }, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "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": [ - "Sequence read processing", - "Sequencing quality control", - "Visualisation", - "Taxonomic classification", - "Phylogenetic analysis", - "DNA barcoding", - "Sequence clustering" - ], - "edam_topic": [ - "Metagenomics", - "Microbial ecology", - "Taxonomy", - "Sequence analysis" - ], - "exact_supported_servers": [], - "feedback_mean_note": 4.0625, - "feedback_number": 16, - "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-03-14", - "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": 2984, - "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_summary_seqs", - "mothur_classify_seqs", - "humann2_regroup_table", - "krona-text", - "mothur_pre_cluster", - "mothur_align_seqs", - "mothur_make_group", - "mothur_unique_seqs", - "humann2_renorm_table", - "metaphlan2", - "metaphlan2krona", - "mothur_merge_files", - "mothur_make_biom", - "mothur_make_shared", - "mothur_screen_seqs", - "mothur_count_seqs", - "mothur_cluster_split", - "mothur_classify_otu", - "mothur_filter_seqs", - "taxonomy_krona_chart", - "humann2" - ], - "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": 159, - "visitors": 2225, - "workflows": [ - { - "creators": [], - "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 9c257e43-bcaa-4db8-9bfd-eb103a4050fe[\"Output\\nmothur_make_shared_shared\"];\n 18 --> 9c257e43-bcaa-4db8-9bfd-eb103a4050fe;\n style 9c257e43-bcaa-4db8-9bfd-eb103a4050fe 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-06-24 00:06:32 +0000", - "name": "Amplicon Tutorial", - "path": "topics/microbiome/tutorials/general-tutorial/workflows/amplicon.ga", - "test_results": null, - "tests": true, - "title": "Amplicon Tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-general-tutorial/versions/amplicon", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/amplicon.ga", - "wfid": "microbiome-general-tutorial", - "wfname": "amplicon", - "workflow": "amplicon.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "WGS Part In \"Analyses Of Metagenomics Data - The Global Picture\"", - "path": "topics/microbiome/tutorials/general-tutorial/workflows/wgs-worklow.ga", - "test_results": null, - "tests": false, - "title": "WGS Part In \"Analyses Of Metagenomics Data - The Global Picture\"", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-general-tutorial/versions/wgs-worklow", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/wgs-worklow.ga", - "wfid": "microbiome-general-tutorial", - "wfname": "wgs-worklow", - "workflow": "wgs-worklow.ga" - } - ], - "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": "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": "147de996e34f", - "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: 147de996e34f\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": [ - "Phylogenetic tree reconstruction", - "Sequence composition calculation", - "Base-calling", - "Genome assembly", - "Phylogenetic tree generation (from molecular sequences)", - "Validation", - "Visualisation", - "Sequence assembly visualisation", - "Multilocus sequence typing", - "Scatter plot plotting", - "Statistical calculation", - "Data handling", - "Phylogenetic tree generation (maximum likelihood and Bayesian methods)", - "Pairwise sequence alignment", - "Sequence contamination filtering", - "De-novo assembly", - "Sequence alignment analysis", - "Variant calling", - "Mapping", - "Sequencing quality control", - "Phylogenetic tree generation", - "Mapping assembly", - "Box-Whisker plot plotting", - "Cross-assembly", - "Taxonomic classification", - "Antimicrobial resistance prediction", - "Multiple sequence alignment", - "Sequence assembly", - "Aggregation", - "Phylogenetic tree analysis" - ], - "edam_topic": [ - "Metagenomics", - "Public health and epidemiology", - "Taxonomy", - "Sequence assembly", - "Pathology", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "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-06-19", - "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": 1884, - "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": [ - "nanoplot", - "bandage_image", - "Cut1", - "CONVERTER_gz_to_uncompressed", - "bcftools_consensus", - "samtools_fastx", - "Grouping1", - "tp_replace_in_column", - "Grep1", - "__BUILD_LIST__", - "tp_find_and_replace", - "regex1", - "clustalw", - "fastp", - "tp_sorted_uniq", - "collection_element_identifiers", - "Paste1", - "flye", - "Add_a_column1", - "medaka_consensus_pipeline", - "Count1", - "minimap2", - "table_compute", - "tp_split_on_column", - "bamtools_split_mapped", - "clair3", - "kraken2", - "collapse_dataset", - "__FILTER_EMPTY_DATASETS__", - "compose_text_param", - "samtools_depth", - "snpSift_extractFields", - "regexColumn1", - "fastqc", - "abricate", - "newick_display", - "krakentools_extract_kraken_reads", - "bcftools_norm", - "barchart_gnuplot", - "Remove beginning1", - "samtools_coverage", - "split_file_to_collection", - "porechop", - "tp_multijoin_tool", - "mlst", - "tp_head_tool", - "multiqc", - "collection_column_join", - "fasta_merge_files_and_filter_unique_sequences", - "param_value_from_file", - "add_line_to_file", - "krakentools_kreport2krona", - "bedtools_getfastabed", - "fasttree", - "tab2fasta", - "ggplot2_heatmap", - "snpSift_filter", - "__FILTER_FAILED_DATASETS__", - "taxonomy_krona_chart", - "fasta2tab", - "tp_cut_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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 168, - "visitors": 1259, - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Allele-based Pathogen Identification", - "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/allele_based_pathogen_identification.ga", - "test_results": null, - "tests": true, - "title": "Allele-based Pathogen Identification", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/allele_based_pathogen_identification.ga", - "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", - "wfname": "allele_based_pathogen_identification", - "workflow": "allele_based_pathogen_identification.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Gene-based Pathogen Identification", - "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/gene_based_pathogen_identification.ga", - "test_results": null, - "tests": true, - "title": "Gene-based Pathogen Identification", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/gene_based_pathogen_identification.ga", - "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", - "wfname": "gene_based_pathogen_identification", - "workflow": "gene_based_pathogen_identification.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Nanopore Preprocessing", - "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/nanopore_preprocessing.ga", - "test_results": null, - "tests": true, - "title": "Nanopore Preprocessing", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/nanopore_preprocessing", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/nanopore_preprocessing.ga", - "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", - "wfname": "nanopore_preprocessing", - "workflow": "nanopore_preprocessing.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Pathogen Detection PathoGFAIR Samples Aggregation and Visualisation", - "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.ga", - "test_results": null, - "tests": false, - "title": "Pathogen Detection PathoGFAIR Samples Aggregation and Visualisation", - "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", - "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", - "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" - }, - { - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Taxonomy Profiling and Visualization with Krona", - "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/taxonomy_profiling_and_visualisation_with_krona.ga", - "test_results": null, - "tests": true, - "title": "Taxonomy Profiling and Visualization with Krona", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/taxonomy_profiling_and_visualisation_with_krona.ga", - "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", - "wfname": "taxonomy_profiling_and_visualisation_with_krona", - "workflow": "taxonomy_profiling_and_visualisation_with_krona.ga" - } - ], - "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": [ - "Taxonomic classification", - "Aggregation", - "Nucleic acid sequence analysis", - "Statistical calculation", - "Visualisation", - "Phylogenetic tree analysis" - ], - "edam_topic": [ - "Metagenomics", - "Microbial ecology", - "Taxonomy", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.333333333333333, - "feedback_number": 3, - "hands_on": true, - "id": "microbiome/taxonomic-profiling", - "inexact_supported_servers": [ - "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-05-29", - "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": 3680, - "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": [ - "interactive_tool_pavian", - "interactive_tool_phinch", - "est_abundance", - "kraken2", - "metaphlan", - "kraken_biom", - "taxonomy_krona_chart", - "__UNZIP_COLLECTION__", - "krakentools_kreport2krona" - ], - "slides": false, - "slides_recordings": false, - "subtopic": "metagenomics", - "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": [ - "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": 0, - "video_view": 0, - "visit_duration": 114, - "visitors": 2673, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-9852-1987", - "name": "B\u00e9r\u00e9nice Batut" - } - ], - "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 7375ef29-63c5-4915-a7fc-eafabf10ebd1[\"Output\\nkraken_report\"];\n 3 --> 7375ef29-63c5-4915-a7fc-eafabf10ebd1;\n style 7375ef29-63c5-4915-a7fc-eafabf10ebd1 stroke:#2c3143,stroke-width:4px;\n 4[\"MetaPhlAn\"];\n 2 -->|forward| 4;\n 2 -->|reverse| 4;\n fa8a109b-3c69-436b-a9c1-badeff4db303[\"Output\\nmetaphlan_output\"];\n 4 --> fa8a109b-3c69-436b-a9c1-badeff4db303;\n style fa8a109b-3c69-436b-a9c1-badeff4db303 stroke:#2c3143,stroke-width:4px;\n 5[\"Krakentools: Convert kraken report file\"];\n 3 -->|report_output| 5;\n 3c26a162-3c75-488b-bcea-bd3375307fcd[\"Output\\nkrakentool_report\"];\n 5 --> 3c26a162-3c75-488b-bcea-bd3375307fcd;\n style 3c26a162-3c75-488b-bcea-bd3375307fcd 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-06-24 00:06:32 +0000", - "name": "Taxonomic Profiling and Visualization of Metagenomic Data", - "path": "topics/microbiome/tutorials/taxonomic-profiling/workflows/main-workflow.ga", - "test_results": null, - "tests": true, - "title": "Taxonomic Profiling and Visualization of Metagenomic Data", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-taxonomic-profiling/versions/main-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/taxonomic-profiling/workflows/main-workflow.ga", - "wfid": "microbiome-taxonomic-profiling", - "wfname": "main-workflow", - "workflow": "main-workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7871630" - }, - { - "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": [ - "Sequence composition calculation", - "Genome assembly", - "Visualisation", - "Primer removal", - "Sequence assembly visualisation", - "Sequence file editing", - "Read mapping", - "Statistical calculation", - "Data handling", - "Sequence contamination filtering", - "Local alignment", - "Sequence alignment analysis", - "Variant calling", - "Sequencing quality control", - "Read pre-processing", - "Sequence assembly validation", - "Formatting", - "Sequence trimming" - ], - "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-05-29", - "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": 1543, - "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": [ - "filter_tabular", - "bandage_image", - "metaspades", - "megahit", - "quast", - "cutadapt", - "tp_cat", - "ngsutils_bam_filter", - "megahit_contig2fastg", - "random_lines1", - "bamtools", - "bowtie2", - "bandage_info", - "collection_column_join", - "coverm_contig", - "seqtk_subseq", - "fastqc", - "bg_uniq" - ], - "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": 0, - "video_view": 0, - "visit_duration": 156, - "visitors": 1100, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Metagenomics assembly tutorial workflow", - "path": "topics/microbiome/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", - "test_results": null, - "tests": false, - "title": "Metagenomics assembly tutorial workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metagenomics-assembly/versions/metagenomics_assembly_tutorial_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", - "wfid": "microbiome-metagenomics-assembly", - "wfname": "metagenomics_assembly_tutorial_workflow", - "workflow": "metagenomics_assembly_tutorial_workflow.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "workflow-generate-dataset-for-assembly-tutorial", - "path": "topics/microbiome/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", - "test_results": null, - "tests": false, - "title": "workflow-generate-dataset-for-assembly-tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metagenomics-assembly/versions/workflow-generate-dataset-for-assembly-tutorial", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", - "wfid": "microbiome-metagenomics-assembly", - "wfname": "workflow-generate-dataset-for-assembly-tutorial", - "workflow": "workflow-generate-dataset-for-assembly-tutorial.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7818827" - }, - { - "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", - "Genome assembly", - "Mapping assembly", - "Sequence assembly visualisation", - "Box-Whisker plot plotting", - "Scatter plot plotting", - "Aggregation", - "Sequence analysis", - "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": 5.0, - "feedback_number": 10, - "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-05-29", - "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": 1419, - "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", - "bandage_image", - "racon", - "staramr_search", - "PlasFlow", - "gfa_to_fa", - "unicycler", - "miniasm", - "minimap2" - ], - "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": 0, - "video_view": 0, - "visit_duration": 243, - "visitors": 902, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Copy Of GTN Training - Antibiotic Resistance Detection", - "path": "topics/microbiome/tutorials/plasmid-metagenomics-nanopore/workflows/Workflow-plasmid-metagenomics-nanopore.ga", - "test_results": null, - "tests": false, - "title": "Copy Of GTN Training - Antibiotic Resistance Detection", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-plasmid-metagenomics-nanopore/versions/workflow-plasmid-metagenomics-nanopore", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/workflows/Workflow-plasmid-metagenomics-nanopore.ga", - "wfid": "microbiome-plasmid-metagenomics-nanopore", - "wfname": "workflow-plasmid-metagenomics-nanopore", - "workflow": "Workflow-plasmid-metagenomics-nanopore.ga" - } - ], - "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": "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": [ - "Taxonomic classification", - "Sequence composition calculation", - "Statistical calculation", - "Validation", - "Sequencing quality control", - "Visualisation", - "Sequence contamination filtering" - ], - "edam_topic": [ - "Microbial ecology", - "Taxonomy", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.6923076923076925, - "feedback_number": 13, - "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-03-21", - "objectives": [ - "Use Nanopore data for studying soil metagenomics", - "Analyze and preprocess Nanopore reads", - "Use Kraken2 to assign a taxonomic labels" - ], - "pageviews": 2617, - "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": [ - "tp_replace_in_line", - "kraken2", - "Remove beginning1", - "porechop", - "multiqc", - "datamash_reverse", - "taxonomy_krona_chart", - "fastqc", - "fastp" - ], - "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" - ], - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 174, - "visitors": 1835, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Training: 16S rRNA Analysis with Nanopore Sequencing Reads", - "path": "topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Training: 16S rRNA Analysis with Nanopore Sequencing Reads", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-nanopore-16S-metagenomics/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.ga", - "wfid": "microbiome-nanopore-16S-metagenomics", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4274812" - }, - { - "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": [ - "Sequence composition calculation", - "Phylogenetic tree visualisation", - "Validation", - "Phylogenetic inference", - "Primer removal", - "Visualisation", - "Species frequency estimation", - "Statistical calculation", - "Phylogenetic analysis", - "Sequence similarity search", - "Sequence alignment analysis", - "Sequence comparison", - "Sequencing quality control", - "Read pre-processing", - "Phylogenetic tree editing", - "Taxonomic classification", - "Conversion", - "Nucleic acid sequence analysis", - "Phylogenetic tree analysis", - "Sequence trimming" - ], - "edam_topic": [ - "Metatranscriptomics", - "Microbial ecology", - "Taxonomy", - "Function analysis", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.5, - "feedback_number": 6, - "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-05-29", - "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": 5535600, - "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": [ - "graphlan_annotate", - "Cut1", - "humann_split_stratified_table", - "bg_sortmerna", - "Grep1", - "tp_find_and_replace", - "graphlan", - "humann_renorm_table", - "humann", - "metaphlan", - "humann_rename_table", - "fastqc", - "multiqc", - "combine_metaphlan2_humann2", - "fastq_paired_end_interlacer", - "cutadapt", - "export2graphlan", - "humann_regroup_table", - "taxonomy_krona_chart", - "humann_unpack_pathways" - ], - "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": 0, - "video_view": 0, - "visit_duration": 258, - "visitors": 1986067, - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Main Metatranscriptomics Analysis", - "path": "topics/microbiome/tutorials/metatranscriptomics/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Main Metatranscriptomics Analysis", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics/workflows/main_workflow.ga", - "wfid": "microbiome-metatranscriptomics", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [ - "Sequence composition calculation", - "Phylogenetic tree visualisation", - "Validation", - "Phylogenetic inference", - "Primer removal", - "Visualisation", - "Species frequency estimation", - "Statistical calculation", - "Phylogenetic analysis", - "Sequence similarity search", - "Sequence alignment analysis", - "Sequence comparison", - "Sequencing quality control", - "Read pre-processing", - "Phylogenetic tree editing", - "Taxonomic classification", - "Conversion", - "Nucleic acid sequence analysis", - "Phylogenetic tree analysis", - "Sequence trimming" - ], - "edam_topic": [ - "Metatranscriptomics", - "Microbial ecology", - "Taxonomy", - "Function analysis", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "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-05-29", - "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": 236, - "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": [ - "graphlan_annotate", - "Cut1", - "humann_split_stratified_table", - "bg_sortmerna", - "Grep1", - "tp_find_and_replace", - "graphlan", - "humann_renorm_table", - "humann", - "metaphlan", - "humann_rename_table", - "fastqc", - "multiqc", - "combine_metaphlan2_humann2", - "fastq_paired_end_interlacer", - "cutadapt", - "export2graphlan", - "humann_regroup_table", - "taxonomy_krona_chart", - "humann_unpack_pathways" - ], - "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": 0, - "video_view": 0, - "visit_duration": 120, - "visitors": 184, - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 1: Preprocessing", - "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow1_preprocessing.ga", - "test_results": null, - "tests": true, - "title": "Workflow 1: Preprocessing", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow1_preprocessing", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow1_preprocessing.ga", - "wfid": "microbiome-metatranscriptomics-short", - "wfname": "workflow1_preprocessing", - "workflow": "workflow1_preprocessing.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 2: Community Profile", - "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow2_community_profile.ga", - "test_results": null, - "tests": true, - "title": "Workflow 2: Community Profile", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow2_community_profile", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow2_community_profile.ga", - "wfid": "microbiome-metatranscriptomics-short", - "wfname": "workflow2_community_profile", - "workflow": "workflow2_community_profile.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 3: Functional Information", - "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information.ga", - "test_results": null, - "tests": true, - "title": "Workflow 3: Functional Information", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow3_functional_information", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information.ga", - "wfid": "microbiome-metatranscriptomics-short", - "wfname": "workflow3_functional_information", - "workflow": "workflow3_functional_information.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 3: Functional Information (quick)", - "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information_quick.ga", - "test_results": null, - "tests": true, - "title": "Workflow 3: Functional Information (quick)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow3_functional_information_quick", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information_quick.ga", - "wfid": "microbiome-metatranscriptomics-short", - "wfname": "workflow3_functional_information_quick", - "workflow": "workflow3_functional_information_quick.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4776250" - }, - { - "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": [ - "Taxonomic classification", - "Sequence composition calculation", - "Aggregation", - "Statistical calculation", - "Sequencing quality control", - "Visualisation", - "Sequence contamination filtering" - ], - "edam_topic": [ - "Metagenomics", - "Microbial ecology", - "Taxonomy", - "Sequence analysis" - ], - "exact_supported_servers": [ - "GalaxyTrakr", - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.666666666666667, - "feedback_number": 3, - "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-05-29", - "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": 1570, - "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": [ - "kraken2", - "porechop", - "taxonomy_krona_chart", - "fastqc", - "fastp", - "Filter1", - "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": 0, - "video_view": 0, - "visit_duration": 180, - "visitors": 969, - "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" - } - ], - "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 952d974f-2b87-48a6-9ece-4dce2cc91399[\"Output\\nkraken_report\"];\n 4 --> 952d974f-2b87-48a6-9ece-4dce2cc91399;\n style 952d974f-2b87-48a6-9ece-4dce2cc91399 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 cfedf6dc-9758-4149-9c8a-3571f08083a7[\"Output\\nkrakentool_report\"];\n 7 --> cfedf6dc-9758-4149-9c8a-3571f08083a7;\n style cfedf6dc-9758-4149-9c8a-3571f08083a7 stroke:#2c3143,stroke-width:4px;\n 8[\"Krona pie chart\"];\n 7 -->|output| 8;", - "modified": "2024-06-24 00:06:32 +0000", - "name": "Identification of the micro-organisms in a beer using Nanopore sequencing", - "path": "topics/microbiome/tutorials/beer-data-analysis/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Identification of the micro-organisms in a beer using Nanopore sequencing", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-beer-data-analysis/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/beer-data-analysis/workflows/main_workflow.ga", - "wfid": "microbiome-beer-data-analysis", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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", - "id": "clsiguret", - "joined": "2024-04", - "name": "Clea Siguret", - "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": [ - "Variant calling", - "DNA barcoding", - "Deposition", - "Visualisation", - "Analysis" - ], - "edam_topic": [ - "Microbial ecology", - "Taxonomy", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.fr" - ], - "feedback_mean_note": null, - "feedback_number": 0, - "hands_on": true, - "id": "microbiome/dada-16S", - "inexact_supported_servers": [], - "js_requirements": { - "mathjax": 14583, - "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-06-17", - "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": 129, - "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": [ - "tp_replace_in_line", - "dada2_filterAndTrim", - "dada2_plotQualityProfile", - "Grouping1", - "tp_replace_in_column", - "cat1", - "interactive_tool_phyloseq", - "collection_element_identifiers", - "Add_a_column1", - "dada2_mergePairs", - "dada2_seqCounts", - "__UNZIP_COLLECTION__", - "__SORTLIST__", - "dada2_dada", - "dada2_makeSequenceTable", - "phyloseq_from_dada2", - "tp_head_tool", - "dada2_removeBimeraDenovo", - "dada2_learnErrors", - "dada2_assignTaxonomyAddspecies" - ], - "slides": false, - "slides_recordings": false, - "subtopic": "metabarcoding", - "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": [ - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 89, - "visitors": 104, - "workflows": [ - { - "creators": [ - { - "class": "Organization", - "isNew": true, - "name": "" - }, - { - "class": "Person", - "identifier": "0000-0001-9852-1987", - "name": "B\u00e9r\u00e9nice Batut" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", - "path": "topics/microbiome/tutorials/dada-16S/workflows/workflow.ga", - "test_results": null, - "tests": true, - "title": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-dada-16S/versions/workflow", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/dada-16S/workflows/workflow.ga", - "wfid": "microbiome-dada-16S", - "wfname": "workflow", - "workflow": "workflow.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.800651" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 1, - "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": 152, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 74, - "visitors": 83 - }, - { - "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": [ - "Sequence composition calculation", - "Genome assembly", - "Statistical calculation", - "Validation", - "Sequencing quality control", - "Sequence assembly validation" - ], - "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": 1367, - "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": [ - "checkm_lineage_wf", - "megahit" - ], - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 91, - "visitors": 1134, - "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": 5.0, - "feedback_number": 1, - "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": 94, - "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": 2, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 205, - "visitors": 72 - }, - { - "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": "02446d12c359", - "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": "528f950d1044", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_cluster_split", - "owner": "iuc", - "revisions": "1b7fd1678230", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_count_groups", - "owner": "iuc", - "revisions": "03c86648a52e", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_count_seqs", - "owner": "iuc", - "revisions": "7a6f9c899221", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_dist_seqs", - "owner": "iuc", - "revisions": "0554c9338ca0", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_dist_shared", - "owner": "iuc", - "revisions": "f25598da7174", - "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": "0851ae17c58e", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_pre_cluster", - "owner": "iuc", - "revisions": "05183ee20cf8", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_rarefaction_single", - "owner": "iuc", - "revisions": "af521db77c56", - "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": "5097ac2cbfc3", - "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": "609770e516fa", - "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": "43e2715e98c9", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_unique_seqs", - "owner": "iuc", - "revisions": "d466580cd706", - "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: 02446d12c359\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: 528f950d1044\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: 1b7fd1678230\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: 03c86648a52e\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: 7a6f9c899221\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: 0554c9338ca0\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: f25598da7174\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: '0851ae17c58e'\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: '05183ee20cf8'\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: af521db77c56\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: 5097ac2cbfc3\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: 609770e516fa\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: 43e2715e98c9\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: d466580cd706\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": [ - "Phylogenetic tree reconstruction", - "Sequence read processing", - "Sequencing quality control", - "Visualisation", - "Phylogenetic tree generation", - "Taxonomic classification", - "Phylogenetic analysis", - "DNA barcoding", - "Sequence clustering", - "Phylogenetic tree analysis" - ], - "edam_topic": [ - "Microbial ecology", - "Taxonomy", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.666666666666667, - "feedback_number": 9, - "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-05-31", - "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": 2824, - "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_summary_seqs", - "mothur_classify_seqs", - "mothur_pre_cluster", - "mothur_rarefaction_single", - "mothur_remove_lineage", - "mothur_unique_seqs", - "collapse_dataset", - "XY_Plot_1", - "newick_display", - "mothur_sub_sample", - "mothur_summary_single", - "mothur_venn", - "mothur_make_shared", - "mothur_heatmap_sim", - "mothur_dist_shared", - "mothur_screen_seqs", - "mothur_count_seqs", - "mothur_cluster_split", - "mothur_remove_seqs", - "mothur_classify_otu", - "mothur_filter_seqs", - "mothur_remove_groups", - "mothur_cluster", - "mothur_count_groups", - "mothur_dist_seqs", - "mothur_chimera_vsearch", - "mothur_tree_shared" - ], - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 363, - "visitors": 1485, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 1: Quality Control [Galaxy Training: 16S Microbial Analysis With Mothur]", - "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow1_quality_control.ga", - "test_results": null, - "tests": false, - "title": "Workflow 1: Quality Control [Galaxy Training: 16S Microbial Analysis With Mothur]", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow1_quality_control", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow1_quality_control.ga", - "wfid": "microbiome-mothur-miseq-sop-short", - "wfname": "workflow1_quality_control", - "workflow": "workflow1_quality_control.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 2: Data Cleaning And Chimera Removal [Galaxy Training: 16S Microbial Analysis With Mothur]", - "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow2_data_cleaning.ga", - "test_results": null, - "tests": false, - "title": "Workflow 2: Data Cleaning And Chimera Removal [Galaxy Training: 16S Microbial Analysis With Mothur]", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow2_data_cleaning", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow2_data_cleaning.ga", - "wfid": "microbiome-mothur-miseq-sop-short", - "wfname": "workflow2_data_cleaning", - "workflow": "workflow2_data_cleaning.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 3: Classification [Galaxy Training: 16S Microbial Analysis With Mothur]", - "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow3_classification.ga", - "test_results": null, - "tests": false, - "title": "Workflow 3: Classification [Galaxy Training: 16S Microbial Analysis With Mothur]", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow3_classification", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow3_classification.ga", - "wfid": "microbiome-mothur-miseq-sop-short", - "wfname": "workflow3_classification", - "workflow": "workflow3_classification.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 4: Mock OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", - "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow4_mock_otu_clustering.ga", - "test_results": null, - "tests": false, - "title": "Workflow 4: Mock OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow4_mock_otu_clustering", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow4_mock_otu_clustering.ga", - "wfid": "microbiome-mothur-miseq-sop-short", - "wfname": "workflow4_mock_otu_clustering", - "workflow": "workflow4_mock_otu_clustering.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 5: OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", - "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow5_otu_clustering.ga", - "test_results": null, - "tests": false, - "title": "Workflow 5: OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow5_otu_clustering", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow5_otu_clustering.ga", - "wfid": "microbiome-mothur-miseq-sop-short", - "wfname": "workflow5_otu_clustering", - "workflow": "workflow5_otu_clustering.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow 6: Alpha Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", - "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow6_alpha_diversity.ga", - "test_results": null, - "tests": false, - "title": "Workflow 6: Alpha Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow6_alpha_diversity", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow6_alpha_diversity.ga", - "wfid": "microbiome-mothur-miseq-sop-short", - "wfname": "workflow6_alpha_diversity", - "workflow": "workflow6_alpha_diversity.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Workflow7: Beta Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", - "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow7_beta_diversity.ga", - "test_results": null, - "tests": false, - "title": "Workflow7: Beta Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow7_beta_diversity", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow7_beta_diversity.ga", - "wfid": "microbiome-mothur-miseq-sop-short", - "wfname": "workflow7_beta_diversity", - "workflow": "workflow7_beta_diversity.ga" - } - ], - "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": "02446d12c359", - "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": "528f950d1044", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_cluster_split", - "owner": "iuc", - "revisions": "1b7fd1678230", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_count_groups", - "owner": "iuc", - "revisions": "03c86648a52e", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_count_seqs", - "owner": "iuc", - "revisions": "7a6f9c899221", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_dist_seqs", - "owner": "iuc", - "revisions": "0554c9338ca0", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_dist_shared", - "owner": "iuc", - "revisions": "f25598da7174", - "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": "55e975c9a012", - "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": "0851ae17c58e", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_pre_cluster", - "owner": "iuc", - "revisions": "05183ee20cf8", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_rarefaction_single", - "owner": "iuc", - "revisions": "af521db77c56", - "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": "609770e516fa", - "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": "a97107cc4c93", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_tree_shared", - "owner": "iuc", - "revisions": "43e2715e98c9", - "tool_panel_section_label": "Mothur", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "mothur_unique_seqs", - "owner": "iuc", - "revisions": "d466580cd706", - "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: 02446d12c359\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: 528f950d1044\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: 1b7fd1678230\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: 03c86648a52e\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: 7a6f9c899221\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: 0554c9338ca0\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: f25598da7174\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: 55e975c9a012\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: '0851ae17c58e'\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: '05183ee20cf8'\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: af521db77c56\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: 609770e516fa\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: a97107cc4c93\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: 43e2715e98c9\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: d466580cd706\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": [ - "Phylogenetic tree reconstruction", - "Sequence read processing", - "Sequencing quality control", - "Visualisation", - "Phylogenetic tree generation", - "Taxonomic classification", - "Phylogenetic analysis", - "DNA barcoding", - "Sequence clustering", - "Phylogenetic tree analysis" - ], - "edam_topic": [ - "Microbial ecology", - "Taxonomy", - "Sequence analysis" - ], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.613636363636363, - "feedback_number": 44, - "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": 5683, - "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_make_contigs", - "mothur_seq_error", - "mothur_summary_seqs", - "mothur_classify_seqs", - "mothur_pre_cluster", - "mothur_align_seqs", - "mothur_rarefaction_single", - "mothur_remove_lineage", - "mothur_unique_seqs", - "mothur_taxonomy_to_krona", - "XY_Plot_1", - "newick_display", - "mothur_sub_sample", - "mothur_summary_single", - "mothur_make_biom", - "mothur_venn", - "mothur_make_shared", - "mothur_heatmap_sim", - "mothur_dist_shared", - "mothur_screen_seqs", - "mothur_get_groups", - "mothur_count_seqs", - "mothur_cluster_split", - "mothur_remove_seqs", - "mothur_classify_otu", - "mothur_filter_seqs", - "mothur_remove_groups", - "mothur_cluster", - "taxonomy_krona_chart", - "mothur_count_groups", - "mothur_dist_seqs", - "mothur_chimera_vsearch", - "mothur_tree_shared" - ], - "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": 188, - "visitors": 3646, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Training: 16S rRNA Sequencing With Mothur: Main Tutorial", - "path": "topics/microbiome/tutorials/mothur-miseq-sop/workflows/mothur-miseq-sop.ga", - "test_results": null, - "tests": false, - "title": "Training: 16S rRNA Sequencing With Mothur: Main Tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop/versions/mothur-miseq-sop", - "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop/workflows/mothur-miseq-sop.ga", - "wfid": "microbiome-mothur-miseq-sop", - "wfname": "mothur-miseq-sop", - "workflow": "mothur-miseq-sop.ga" - } - ], - "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": "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": [ - "Methylation analysis", - "Tree-based sequence alignment", - "Variant classification", - "Variant calling" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.5, - "feedback_number": 10, - "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-05-29", - "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": 11718, - "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": [ - "pangolin", - "fasta_regex_finder", - "upload1", - "nextclade", - "datamash_ops", - "Filter1" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 207, - "visitors": 6254, - "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": "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": "147de996e34f", - "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: 147de996e34f\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": [ - "Local alignment", - "Sequence composition calculation", - "Sequence alignment analysis", - "Global alignment", - "Variant calling", - "Validation", - "Sequencing quality control", - "Phylogenetic tree generation", - "Antimicrobial resistance prediction", - "Taxonomic classification", - "Genome visualisation", - "Statistical calculation", - "Sequence alignment", - "Sequence analysis", - "Phylogenetic tree visualisation", - "Sequence contamination filtering" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Sequence assembly", - "Genetic variation", - "Public health and epidemiology", - "Infectious disease" - ], - "exact_supported_servers": [], - "feedback_mean_note": 4.64, - "feedback_number": 25, - "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-06-12", - "objectives": [ - "How should we filter those variants", - "How can we predict drug resistance from those variants", - "How do we annotate those variants" - ], - "pageviews": 8587, - "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": [ - "tb_variant_filter", - "bcftools_consensus", - "jvarkit_wgscoverageplotter", - "fastp", - "jbrowse", - "snippy", - "kraken2", - "EMBOSS:%20seqret84", - "qualimap_bamqc", - "fastqc", - "tb_profiler_profile", - "EMBOSS: seqret84", - "mosdepth", - "tbvcfreport", - "__FLATTEN__", - "multiqc", - "upload1", - "tp_sed_tool", - "samtools_stats", - "tp_awk_tool" - ], - "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": 75, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 178, - "visitors": 5340, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-6553-5274", - "name": "Peter van Heusden" - } - ], - "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-06-24 00:06:34 +0000", - "name": "TB Variant Analysis v1.0", - "path": "topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.ga", - "test_results": null, - "tests": true, - "title": "TB Variant Analysis v1.0", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-tb-variant-analysis/versions/tb-variant-analysis", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.ga", - "wfid": "variant-analysis-tb-variant-analysis", - "wfname": "tb-variant-analysis", - "workflow": "tb-variant-analysis.ga" - } - ], - "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": "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": [ - "Generation", - "Sequence alignment", - "Validation", - "Genome indexing", - "Sequencing quality control", - "Formatting", - "SNP detection", - "Read mapping", - "Data handling", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.0, - "feedback_number": 5, - "hands_on": true, - "id": "variant-analysis/sars-cov-2", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-05-29", - "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": 18099, - "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": [ - "picard_MarkDuplicates", - "samtools_stats", - "snpeff_sars_cov_2", - "fasterq_dump", - "Grep1", - "multiqc", - "lofreq_indelqual", - "snpSift_extractFields", - "tp_cut_tool", - "bwa_mem", - "fastp", - "lofreq_viterbi", - "Filter1", - "lofreq_call" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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.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": 45, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 174, - "visitors": 11906, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Simple COVID-19 - PE Variation", - "path": "topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Simple COVID-19 - PE Variation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-sars-cov-2/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", - "wfid": "variant-analysis-sars-cov-2", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "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": [ - "Local alignment", - "Sequence alignment analysis", - "Generation", - "Global alignment", - "Genome indexing", - "Sequencing quality control", - "Multiple sequence alignment", - "Read mapping", - "Sequence alignment", - "Sequence analysis", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.0, - "feedback_number": 1, - "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": 490, - "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": [ - "Cut1", - "rbc_mafft", - "__APPLY_RULES__", - "Grep1", - "fastp", - "Add_a_column1", - "fatovcf", - "fasta_compute_length", - "qualimap_bamqc", - "compose_text_param", - "EMBOSS: maskseq51", - "samtools_view", - "ivar_consensus", - "__ZIP_COLLECTION__", - "bwa_mem", - "param_value_from_file", - "ivar_trim", - "fasta_regex_finder", - "upload1", - "samtools_merge", - "datamash_ops", - "mimodd_info" - ], - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 133, - "visitors": 420, - "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" - } - ], - "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-06-24 00:06:34 +0000", - "name": "pox-virus-tiled-amplicon-ref-masking", - "path": "topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.ga", - "test_results": null, - "tests": true, - "title": "pox-virus-tiled-amplicon-ref-masking", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.ga", - "wfid": "variant-analysis-pox-tiled-amplicon", - "wfname": "pox-virus-tiled-amplicon-ref-masking", - "workflow": "pox-virus-tiled-amplicon-ref-masking.ga" - } - ] - }, - { - "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": 3.25, - "feedback_number": 4, - "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-03", - "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": 4444, - "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", - "rxdock_rbcavity", - "xchem_transfs_scoring", - "openbabel_compound_convert", - "split_file_to_collection", - "collapse_dataset", - "rxdock_rbdock", - "rdock_rbdock", - "ctb_frankenstein_ligand", - "rdock_rbcavity", - "xchem_pose_scoring", - "sucos_max_score" - ], - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 178, - "visitors": 2605, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:29 +0000", - "name": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", - "path": "topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", - "test_results": null, - "tests": false, - "title": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-covid19-docking/versions/workflow", - "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", - "wfid": "computational-chemistry-covid19-docking", - "wfname": "workflow", - "workflow": "workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3730474" - }, - { - "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/", - "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 annotation", - "Genome visualisation", - "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": 1061, - "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": [ - "upload1", - "staramr_search", - "bakta", - "Grep1", - "bowtie2", - "tbl2gff3", - "jbrowse" - ], - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 184, - "visitors": 726, - "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" - } - ], - "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 71194973-788a-4f7d-b6f5-3399e5fa5f1f[\"Output\\nstararm_detailed_summary\"];\n 3 --> 71194973-788a-4f7d-b6f5-3399e5fa5f1f;\n style 71194973-788a-4f7d-b6f5-3399e5fa5f1f stroke:#2c3143,stroke-width:4px;\n 4[\"Bakta\"];\n 0 -->|output| 4;\n 554f3cd1-e8d4-4693-99f1-803ebd89b088[\"Output\\nbakta_annotation_summary\"];\n 4 --> 554f3cd1-e8d4-4693-99f1-803ebd89b088;\n style 554f3cd1-e8d4-4693-99f1-803ebd89b088 stroke:#2c3143,stroke-width:4px;\n 5[\"Bowtie2\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 0 -->|output| 5;\n a94993a4-8698-48cd-90ed-63c08c14ede1[\"Output\\nbowtie_mapping_stats\"];\n 5 --> a94993a4-8698-48cd-90ed-63c08c14ede1;\n style a94993a4-8698-48cd-90ed-63c08c14ede1 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 f82af420-c499-43b3-98d9-e82c2468f87a[\"Output\\njbrowse_output\"];\n 8 --> f82af420-c499-43b3-98d9-e82c2468f87a;\n style f82af420-c499-43b3-98d9-e82c2468f87a stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:31 +0000", - "name": "mrsa AMR gene detection", - "path": "topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", - "test_results": null, - "tests": true, - "title": "mrsa AMR gene detection", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-amr-gene-detection/versions/main-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", - "wfid": "genome-annotation-amr-gene-detection", - "wfname": "main-workflow", - "workflow": "main-workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/10572227" - }, - { - "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": 4.333333333333333, - "feedback_number": 6, - "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": "2023-02-15", - "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": 1857, - "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": [ - "raxml", - "interactive_tool_rstudio", - "upload1" - ], - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 136, - "visitors": 1211, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "Mtb phylogeny", - "path": "topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Mtb phylogeny", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_phylogeny/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.ga", - "wfid": "evolution-mtb_phylogeny", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/6010176" - }, - { - "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": "147de996e34f", - "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: 147de996e34f\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": [ - "Antimicrobial resistance prediction", - "Phylogenetic tree generation", - "Phylogenetic tree visualisation", - "Variant calling" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Infectious disease", - "DNA polymorphism" - ], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.0, - "feedback_number": 7, - "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-03-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": 2211, - "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": [ - "snippy", - "tb_variant_filter", - "tp_replace_in_line", - "trimmomatic", - "bcftools_consensus", - "snp_sites", - "tp_sed_tool", - "addName", - "tp_cat", - "upload1", - "collapse_dataset", - "Grep1", - "__MERGE_COLLECTION__", - "tp_easyjoin_tool", - "tb_profiler_profile", - "samtools_view", - "tp_grep_tool", - "snp_dists" - ], - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 191, - "visitors": 1377, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "From BAMs to drug resistance prediction with TB-profiler", - "path": "topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.ga", - "test_results": null, - "tests": false, - "title": "From BAMs to drug resistance prediction with TB-profiler", - "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", - "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", - "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" - }, - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "From Fastqs to VCFs and BAMs", - "path": "topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", - "test_results": null, - "tests": false, - "title": "From Fastqs to VCFs and BAMs", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", - "wfid": "evolution-mtb_transmission", - "wfname": "galaxy-workflow-from_fastqs_to_vcfs_and_bams", - "workflow": "Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga" - }, - { - "creators": [], - "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-06-24 00:06:31 +0000", - "name": "From VCFs to SNP distance matrix", - "path": "topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "From VCFs to SNP distance matrix", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_transmission/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.ga", - "wfid": "evolution-mtb_transmission", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/6010176" - }, - { - "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": [ - "De-novo assembly", - "Sequence alignment analysis", - "Generation", - "Sequence alignment", - "Genome indexing", - "Sequencing quality control", - "Sequence file editing", - "Multiple sequence alignment", - "Read mapping", - "Phylogenetic analysis", - "Data handling", - "Data retrieval", - "Sequence analysis", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.8, - "feedback_number": 5, - "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": 1657, - "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": [ - "samtools_view", - "bamtools_split_ref", - "upload1", - "rbc_mafft", - "qualimap_bamqc", - "iqtree", - "collapse_dataset", - "Grep1", - "Show beginning1", - "tp_find_and_replace", - "ivar_consensus", - "seqtk_subseq", - "vapor", - "bwa_mem", - "__RELABEL_FROM_FILE__", - "fastp" - ], - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 173, - "visitors": 1097 - }, - { - "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-03", - "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": 1326, - "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", - "Filter1", - "histogram_rpy", - "msstats" - ], - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 97, - "visitors": 976, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "DIA_analysis_MSstats", - "path": "topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_export_tabular.ga", - "test_results": null, - "tests": true, - "title": "DIA_analysis_MSstats", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_export_tabular.ga", - "wfid": "proteomics-DIA_Analysis_MSstats", - "wfname": "galaxy-workflow-dia_msstats_training_export_tabular", - "workflow": "Galaxy-Workflow-DIA_MSstats_Training_export_tabular.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "DIA_analysis_MSstats", - "path": "topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_msstats_input_tabular.ga", - "test_results": null, - "tests": true, - "title": "DIA_analysis_MSstats", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_msstats_input_tabular.ga", - "wfid": "proteomics-DIA_Analysis_MSstats", - "wfname": "galaxy-workflow-dia_msstats_training_msstats_input_tabular", - "workflow": "Galaxy-Workflow-DIA_MSstats_Training_msstats_input_tabular.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4307758" - }, - { - "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": [ - "Tag-based peptide identification", - "Standardisation and normalisation", - "Clustering", - "Protein quantification", - "Visualisation", - "Differential protein expression profiling", - "Principal component plotting", - "Statistical calculation", - "Heat map generation", - "Spectrum calculation", - "Imputation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.75, - "feedback_number": 4, - "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-08", - "objectives": [ - "Analysis of human serum proteome samples with label-free quantification in MaxQuant" - ], - "pageviews": 23218, - "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": [ - "Add_a_column1", - "Cut1", - "msstats", - "Grep1", - "tp_sort_header_tool", - "Filter1", - "histogram_rpy", - "maxquant" - ], - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 103, - "visitors": 15514, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Proteomics: MaxQuant workflow", - "path": "topics/proteomics/tutorials/maxquant-label-free/workflows/maxquant_label_free.ga", - "test_results": null, - "tests": true, - "title": "Proteomics: MaxQuant workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-maxquant-label-free/versions/maxquant_label_free", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-label-free/workflows/maxquant_label_free.ga", - "wfid": "proteomics-maxquant-label-free", - "wfname": "maxquant_label_free", - "workflow": "maxquant_label_free.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3774452" - }, - { - "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-03", - "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": 856, - "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": [ - "tp_cut_tool", - "Convert characters1", - "wolf_psort", - "uniprot", - "bg_uniq", - "Grep1", - "term_id_vs_term_name", - "get_subontology_from", - "tp_easyjoin_tool", - "comp1", - "Filter1", - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 88, - "visitors": 555, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Secreted Proteins Via GO Annotation And WoLF PSORT For shCTSB Paper", - "path": "topics/proteomics/tutorials/secretome-prediction/workflows/WF_secretomePrediction_goWolfpsort.ga", - "test_results": null, - "tests": false, - "title": "Secreted Proteins Via GO Annotation And WoLF PSORT For shCTSB Paper", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-secretome-prediction/versions/wf_secretomeprediction_gowolfpsort", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/secretome-prediction/workflows/WF_secretomePrediction_goWolfpsort.ga", - "wfid": "proteomics-secretome-prediction", - "wfname": "wf_secretomeprediction_gowolfpsort", - "workflow": "WF_secretomePrediction_goWolfpsort.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/519260" - }, - { - "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": [ - "Formatting", - "Filtering" - ], - "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-05-29", - "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": 1896, - "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_searchtolib", - "msconvert", - "encyclopedia_quantify" - ], - "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": 71, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 117, - "visitors": 1307, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "May19 EncyclopeDIA raw inputs", - "path": "topics/proteomics/tutorials/encyclopedia/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "May19 EncyclopeDIA raw inputs", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-encyclopedia/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/encyclopedia/workflows/main_workflow.ga", - "wfid": "proteomics-encyclopedia", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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": 4.5, - "feedback_number": 6, - "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-05-29", - "objectives": [ - "A proteogenomic data analysis of mass spectrometry data to identify and visualize variant peptides." - ], - "pageviews": 1868, - "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", - "query_tabular", - "mz_to_sqlite", - "search_gui" - ], - "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": 55, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 304, - "visitors": 1191, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN Proteogemics2 Database Search", - "path": "topics/proteomics/tutorials/proteogenomics-dbsearch/workflows/galaxy-workflow-mouse_rnaseq_dbsearch.ga", - "test_results": null, - "tests": false, - "title": "GTN Proteogemics2 Database Search", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteogenomics-dbsearch/versions/galaxy-workflow-mouse_rnaseq_dbsearch", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-dbsearch/workflows/galaxy-workflow-mouse_rnaseq_dbsearch.ga", - "wfid": "proteomics-proteogenomics-dbsearch", - "wfname": "galaxy-workflow-mouse_rnaseq_dbsearch", - "workflow": "galaxy-workflow-mouse_rnaseq_dbsearch.ga" - } - ], - "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": "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": [ - "Statistical inference", - "Quantification", - "Functional clustering", - "Visualisation", - "Filtering", - "Principal component visualisation", - "Indexing", - "Query and retrieval", - "Differential protein expression analysis", - "Heat map generation" - ], - "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-14", - "objectives": [ - "A taxonomy and quantitational analysis of metaproteomic mass spectrometry data." - ], - "pageviews": 487, - "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_filter", - "metaquantome_expand", - "metaquantome_sample", - "metaquantome_viz", - "metaquantome_db", - "metaquantome_stat" - ], - "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": 36, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 164, - "visitors": 357, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "metaquantome-taxonomy-workflow", - "path": "topics/proteomics/tutorials/metaquantome-taxonomy/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "metaquantome-taxonomy-workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-metaquantome-taxonomy/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-taxonomy/workflows/main_workflow.ga", - "wfid": "proteomics-metaquantome-taxonomy", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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": [ - "Prediction and recognition", - "Visualisation" - ], - "edam_topic": [ - "Proteomics", - "Proteogenomics", - "Biodiversity", - "Taxonomy" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "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-05-29", - "objectives": [ - "A taxonomy and functional analysis of metaproteomic mass spectrometry data." - ], - "pageviews": 3676, - "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": [ - "search_gui", - "peptide_shaker", - "sqlite_to_tabular", - "query_tabular", - "unipept" - ], - "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": 57, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 161, - "visitors": 2198, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Metaproteomics_GTN", - "path": "topics/proteomics/tutorials/metaproteomics/workflows/workflow.ga", - "test_results": null, - "tests": false, - "title": "Metaproteomics_GTN", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-metaproteomics/versions/workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaproteomics/workflows/workflow.ga", - "wfid": "proteomics-metaproteomics", - "wfname": "workflow", - "workflow": "workflow.ga" - } - ], - "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": "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": 4.5, - "feedback_number": 2, - "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-03", - "objectives": [ - "Protein identification from LC-MS/MS raw files." - ], - "pageviews": 3858, - "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": [ - "FileConverter", - "Grep1", - "peptide_shaker", - "PeakPickerHiRes", - "search_gui" - ], - "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": 50, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 124, - "visitors": 2227, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Peptide And Protein ID Tutorial", - "path": "topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS.ga", - "test_results": null, - "tests": false, - "title": "Peptide And Protein ID Tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-id-sg-ps/versions/wf_proteinid_sg_ps", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS.ga", - "wfid": "proteomics-protein-id-sg-ps", - "wfname": "wf_proteinid_sg_ps", - "workflow": "wf_proteinID_SG_PS.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "ProteinID SG PS Tutorial WF datasetCollection", - "path": "topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS_multipleFiles.ga", - "test_results": null, - "tests": false, - "title": "ProteinID SG PS Tutorial WF datasetCollection", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-id-sg-ps/versions/wf_proteinid_sg_ps_multiplefiles", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS_multipleFiles.ga", - "wfid": "proteomics-protein-id-sg-ps", - "wfname": "wf_proteinid_sg_ps_multiplefiles", - "workflow": "wf_proteinID_SG_PS_multipleFiles.ga" - } - ], - "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": "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": [ - "Prediction and recognition", - "Formatting", - "Visualisation", - "Label-free quantification", - "Filtering" - ], - "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": 1325, - "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": [ - "flashlfq", - "Cut1", - "tp_replace_in_line", - "Remove beginning1", - "tp_replace_in_column", - "Grep1", - "unipept", - "peptide_shaker", - "regex1", - "msconvert", - "query_tabular", - "Filter1", - "search_gui" - ], - "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": 90, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 232, - "visitors": 757, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "metaQuantome_datacreation_workflow", - "path": "topics/proteomics/tutorials/metaquantome-data-creation/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "metaQuantome_datacreation_workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-metaquantome-data-creation/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-data-creation/workflows/main_workflow.ga", - "wfid": "proteomics-metaquantome-data-creation", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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": [ - "Formatting", - "Filtering" - ], - "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-03", - "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": 3189, - "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": [ - "pyprophet_protein", - "pyprophet_peptide", - "pyprophet_merge", - "Grep1", - "msconvert", - "OpenSwathWorkflow", - "pyprophet_export", - "pyprophet_score" - ], - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 136, - "visitors": 2189, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "DIA_Analysis_OSW", - "path": "topics/proteomics/tutorials/DIA_Analysis_OSW/workflows/Galaxy-Workflow-_DIA_Training_using_HEK_Ecoli_3_EG_data_.ga", - "test_results": null, - "tests": false, - "title": "DIA_Analysis_OSW", - "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_", - "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", - "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" - } - ], - "zenodo_link": "https://zenodo.org/record/4307762" - }, - { - "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": 4.0, - "feedback_number": 1, - "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-03", - "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": 3562, - "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", - "tp_sort_header_tool", - "cardinal_quality_report", - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 101, - "visitors": 2194, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "MS Imaging Loading Exploring Data", - "path": "topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/workflows/ms_imaging_loading_exploring_data.ga", - "test_results": null, - "tests": false, - "title": "MS Imaging Loading Exploring Data", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/workflows/ms_imaging_loading_exploring_data.ga", - "wfid": "proteomics-mass-spectrometry-imaging-loading-exploring-data", - "wfname": "ms_imaging_loading_exploring_data", - "workflow": "ms_imaging_loading_exploring_data.ga" - } - ], - "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": "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": [ - "Formatting", - "Filtering" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 5.0, - "feedback_number": 3, - "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-03", - "objectives": [ - "Protein identification from LC-MS/MS raw files." - ], - "pageviews": 4567, - "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": [ - "TextExporter", - "IDMerger", - "IDScoreSwitcher", - "IDPosteriorErrorProbability", - "FalseDiscoveryRate", - "FidoAdapter", - "MSGFPlusAdapter", - "Grep1", - "FileInfo", - "msconvert", - "PeptideIndexer", - "XTandemAdapter", - "IDFilter", - "ConsensusID", - "PeakPickerHiRes" - ], - "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": 62, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 169, - "visitors": 2608, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Proteomics: Peptide and Protein ID using OpenMS", - "path": "topics/proteomics/tutorials/protein-id-oms/workflows/workflow.ga", - "test_results": null, - "tests": false, - "title": "Proteomics: Peptide and Protein ID using OpenMS", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-id-oms/versions/workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-oms/workflows/workflow.ga", - "wfid": "proteomics-protein-id-oms", - "wfname": "workflow", - "workflow": "workflow.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Peptide And Protein ID Via OMS Using Two Search Engines", - "path": "topics/proteomics/tutorials/protein-id-oms/workflows/workflow_two-search-engines.ga", - "test_results": null, - "tests": false, - "title": "Peptide And Protein ID Via OMS Using Two Search Engines", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-id-oms/versions/workflow_two-search-engines", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-oms/workflows/workflow_two-search-engines.ga", - "wfid": "proteomics-protein-id-oms", - "wfname": "workflow_two-search-engines", - "workflow": "workflow_two-search-engines.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/546301" - }, - { - "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": 4.666666666666667, - "feedback_number": 3, - "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-03", - "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": 1245, - "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_basic_plots", - "pdaug_addclasslabel", - "pdaug_sequence_property_based_descriptors", - "pdaug_ml_models", - "pdaug_merge_dataframes" - ], - "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": 9, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 118, - "visitors": 803, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "PeptideML", - "path": "topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/workflows/PeptideML.ga", - "test_results": null, - "tests": false, - "title": "PeptideML", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-ml-modeling-of-anti-cancer-peptides/versions/peptideml", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/workflows/PeptideML.ga", - "wfid": "proteomics-ml-modeling-of-anti-cancer-peptides", - "wfname": "peptideml", - "workflow": "PeptideML.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.4111092" - }, - { - "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": [ - "RNA-Seq analysis", - "Variant calling", - "Statistical calculation", - "Sequence annotation", - "Sequence alignment", - "Transcriptome assembly" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.2, - "feedback_number": 5, - "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-05-29", - "objectives": [ - "Generating a customized Protein sequence database with variants, indels, splice junctions and known sequences." - ], - "pageviews": 7666, - "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": [ - "filter_tabular", - "bed_to_protein_map", - "gffcompare_to_bed", - "tab2fasta", - "tp_cat", - "freebayes", - "translate_bed", - "tp_replace_in_column", - "gffcompare", - "stringtie", - "sqlite_to_tabular", - "custom_pro_db", - "fasta2tab", - "regexColumn1", - "query_tabular", - "fasta_merge_files_and_filter_unique_sequences", - "hisat2" - ], - "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": 68, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 156, - "visitors": 4383, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN Proteogenomics1 Database Creation", - "path": "topics/proteomics/tutorials/proteogenomics-dbcreation/workflows/galaxy-workflow-mouse_rnaseq_dbcreation.ga", - "test_results": null, - "tests": false, - "title": "GTN Proteogenomics1 Database Creation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteogenomics-dbcreation/versions/galaxy-workflow-mouse_rnaseq_dbcreation", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-dbcreation/workflows/galaxy-workflow-mouse_rnaseq_dbcreation.ga", - "wfid": "proteomics-proteogenomics-dbcreation", - "wfname": "galaxy-workflow-mouse_rnaseq_dbcreation", - "workflow": "galaxy-workflow-mouse_rnaseq_dbcreation.ga" - } - ], - "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": 4.75, - "feedback_number": 4, - "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-03", - "objectives": [ - "Creation of a protein FASTA database ready for use with database search algorithms." - ], - "pageviews": 6283, - "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": [ - "DecoyDatabase", - "tab2fasta", - "addValue", - "dbbuilder", - "fasta2tab", - "fasta_merge_files_and_filter_unique_sequences" - ], - "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": 46, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 117, - "visitors": 3768, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Proteomics: database handling", - "path": "topics/proteomics/tutorials/database-handling/workflows/wf_database-handling.ga", - "test_results": null, - "tests": false, - "title": "Proteomics: database handling", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-database-handling/versions/wf_database-handling", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/database-handling/workflows/wf_database-handling.ga", - "wfid": "proteomics-database-handling", - "wfname": "wf_database-handling", - "workflow": "wf_database-handling.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Proteomics: database handling including mycoplasma", - "path": "topics/proteomics/tutorials/database-handling/workflows/wf_database-handling_mycoplasma.ga", - "test_results": null, - "tests": false, - "title": "Proteomics: database handling including mycoplasma", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-database-handling/versions/wf_database-handling_mycoplasma", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/database-handling/workflows/wf_database-handling_mycoplasma.ga", - "wfid": "proteomics-database-handling", - "wfname": "wf_database-handling_mycoplasma", - "workflow": "wf_database-handling_mycoplasma.ga" - } - ], - "zenodo_link": "" - }, - { - "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": 4.5, - "feedback_number": 8, - "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-05-29", - "objectives": [ - "Execute a complete annotation pipeline of a protein list identified by LC-MS/MS experiments" - ], - "pageviews": 3501, - "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", - "Jvenn", - "MQoutputfilter", - "cluter_profiler", - "rna_abbased_data", - "retrieve_from_hpa", - "reactome_analysis" - ], - "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": 39, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 179, - "visitors": 2322, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "'Proteome Annotation'", - "path": "topics/proteomics/tutorials/proteome_annotation/workflows/Galaxy-Workflow-_Proteome_annotation_.ga", - "test_results": null, - "tests": false, - "title": "'Proteome Annotation'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteome_annotation/versions/galaxy-workflow-_proteome_annotation_", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteome_annotation/workflows/Galaxy-Workflow-_Proteome_annotation_.ga", - "wfid": "proteomics-proteome_annotation", - "wfname": "galaxy-workflow-_proteome_annotation_", - "workflow": "Galaxy-Workflow-_Proteome_annotation_.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "ProteoRE ProteomeAnnotation Tutorial (release 2.0)", - "path": "topics/proteomics/tutorials/proteome_annotation/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "ProteoRE ProteomeAnnotation Tutorial (release 2.0)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteome_annotation/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteome_annotation/workflows/main_workflow.ga", - "wfid": "proteomics-proteome_annotation", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3405119" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 1.0, - "feedback_number": 1, - "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": 953, - "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": [ - "IDMerger", - "IDFilter", - "FalseDiscoveryRate", - "MSGFPlusAdapter", - "MzTabExporter", - "FileFilter", - "IDMapper", - "FeatureFinderMultiplex", - "PeptideIndexer", - "FileMerger", - "ConsensusID", - "HighResPrecursorMassCorrector", - "IDConflictResolver" - ], - "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": 28, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 82, - "visitors": 647, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Tails Triple Dimethyl OpenMS2.1", - "path": "topics/proteomics/tutorials/ntails/workflows/WF_ntails.ga", - "test_results": null, - "tests": false, - "title": "Tails Triple Dimethyl OpenMS2.1", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-ntails/versions/wf_ntails", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/ntails/workflows/WF_ntails.ga", - "wfid": "proteomics-ntails", - "wfname": "wf_ntails", - "workflow": "WF_ntails.ga" - } - ], - "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": "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-03", - "objectives": [ - "MS1 feature quantitation and mapping of quantitations to peptide and protein IDs." - ], - "pageviews": 1561, - "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": [ - "TextExporter", - "tp_tail_tool", - "IDPosteriorErrorProbability", - "FalseDiscoveryRate", - "FidoAdapter", - "Grep1", - "MultiplexResolver", - "ProteinQuantifier", - "FileInfo", - "FeatureFinderMultiplex", - "PeptideIndexer", - "XTandemAdapter", - "IDScoreSwitcher", - "histogram_rpy", - "IDMapper", - "Summary_Statistics1", - "IDConflictResolver" - ], - "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": 66, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 98, - "visitors": 1070, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Proteomics: Peptide and Protein Quantification via stable istobe labeling", - "path": "topics/proteomics/tutorials/protein-quant-sil/workflows/workflow.ga", - "test_results": null, - "tests": true, - "title": "Proteomics: Peptide and Protein Quantification via stable istobe labeling", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-quant-sil/versions/workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-quant-sil/workflows/workflow.ga", - "wfid": "proteomics-protein-quant-sil", - "wfname": "workflow", - "workflow": "workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/1051552" - }, - { - "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": [ - "Statistical inference", - "Quantification", - "Functional clustering", - "Visualisation", - "Filtering", - "Principal component visualisation", - "Indexing", - "Query and retrieval", - "Differential protein expression analysis", - "Heat map generation" - ], - "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-14", - "objectives": [ - "A functional and quantitational analysis of metaproteomic mass spectrometry data." - ], - "pageviews": 489, - "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_filter", - "metaquantome_expand", - "metaquantome_sample", - "metaquantome_viz", - "metaquantome_db", - "metaquantome_stat" - ], - "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": 38, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 232, - "visitors": 337, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "metaquantome-function-worklow", - "path": "topics/proteomics/tutorials/metaquantome-function/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "metaquantome-function-worklow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-metaquantome-function/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-function/workflows/main_workflow.ga", - "wfid": "proteomics-metaquantome-function", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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": [ - "Standardisation and normalisation", - "Clustering", - "Protein quantification", - "Visualisation", - "Principal component plotting", - "Statistical calculation", - "Heat map generation", - "Imputation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 5.0, - "feedback_number": 2, - "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-03", - "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": 4744, - "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": [ - "diapysef", - "TargetedFileConverter", - "OpenSwathDecoyGenerator", - "OpenSwathAssayGenerator", - "Filter1", - "maxquant" - ], - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 85, - "visitors": 3560, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "DIA_lib_OSW", - "path": "topics/proteomics/tutorials/DIA_lib_OSW/workflows/Galaxy-Workflow-DIA_lib_Training_HEK_Ecoli_3_EG_data.ga", - "test_results": null, - "tests": false, - "title": "DIA_lib_OSW", - "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", - "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", - "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" - } - ], - "zenodo_link": "https://zenodo.org/record/4293493" - }, - { - "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": [ - "Standardisation and normalisation", - "Clustering", - "Protein quantification", - "Visualisation", - "Principal component plotting", - "Statistical calculation", - "Heat map generation", - "Imputation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.0, - "feedback_number": 1, - "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-03", - "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": 4425, - "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": [ - "msstatstmt", - "maxquant" - ], - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 103, - "visitors": 3200, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "MaxQuant MSstatsTMT Training", - "path": "topics/proteomics/tutorials/maxquant-msstats-tmt/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "MaxQuant MSstatsTMT Training", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-maxquant-msstats-tmt/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-msstats-tmt/workflows/main_workflow.ga", - "wfid": "proteomics-maxquant-msstats-tmt", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/5195800" - }, - { - "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": 5.0, - "feedback_number": 2, - "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-03", - "objectives": [ - "Build a workflow implementing a strategy for the selection of tissue-leakage biomarkers using ProteoRE" - ], - "pageviews": 1832, - "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", - "prot_features", - "MQoutputfilter", - "retr_pepatlas1", - "rna_abbased_data", - "tp_cut_tool", - "retrieve_from_hpa", - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 154, - "visitors": 1319, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "'Biomarkers4Paris' Workflow", - "path": "topics/proteomics/tutorials/biomarker_selection/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "'Biomarkers4Paris' Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-biomarker_selection/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/biomarker_selection/workflows/main_workflow.ga", - "wfid": "proteomics-biomarker_selection", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "" - }, - { - "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": 3.6666666666666665, - "feedback_number": 3, - "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-05-29", - "objectives": [ - "How to assign and visualize the genomic localization of these identified novel proteoforms?" - ], - "pageviews": 1764, - "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": [ - "query_tabular", - "pep_pointer", - "peptide_genomic_coordinate", - "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": 48, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 159, - "visitors": 1178, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN Proteogemics3 Novel Peptide Analysis", - "path": "topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/workflows/galaxy-workflow-mouse_novel_peptide_analysis.ga", - "test_results": null, - "tests": false, - "title": "GTN Proteogemics3 Novel Peptide Analysis", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/workflows/galaxy-workflow-mouse_novel_peptide_analysis.ga", - "wfid": "proteomics-proteogenomics-novel-peptide-analysis", - "wfname": "galaxy-workflow-mouse_novel_peptide_analysis", - "workflow": "galaxy-workflow-mouse_novel_peptide_analysis.ga" - } - ], - "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": "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": [ - "Tag-based peptide identification", - "Standardisation and normalisation", - "Clustering", - "Protein quantification", - "Visualisation", - "Differential protein expression profiling", - "Principal component plotting", - "Statistical calculation", - "Heat map generation", - "Spectrum calculation", - "Imputation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.0, - "feedback_number": 5, - "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-05-29", - "objectives": [ - "Learn how to use MaxQuant and MSstats for the analysis of label-free shotgun (DDA) data" - ], - "pageviews": 10097, - "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": [ - "Cut1", - "ggplot2_heatmap2", - "uniprot", - "msstats", - "tp_replace_in_column", - "Grep1", - "datamash_ops", - "fasta2tab", - "tp_easyjoin_tool", - "Filter1", - "Summary_Statistics1", - "maxquant" - ], - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 167, - "visitors": 5885, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Proteomics: MaxQuant and MSstats LFQ workflow", - "path": "topics/proteomics/tutorials/maxquant-msstats-dda-lfq/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Proteomics: MaxQuant and MSstats LFQ workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-maxquant-msstats-dda-lfq/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-msstats-dda-lfq/workflows/main_workflow.ga", - "wfid": "proteomics-maxquant-msstats-dda-lfq", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": 4.0, - "feedback_number": 1, - "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-03", - "objectives": [ - "Calculate descriptors", - "Quantitative analysis of peptide sequence properties" - ], - "pageviews": 756, - "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_fishers_plot", - "pdaug_peptide_sequence_analysis", - "pdaug_basic_plots", - "pdaug_addclasslabel", - "pdaug_peptide_data_access", - "pdaug_sequence_property_based_descriptors", - "pdaug_tsvtofasta", - "pdaug_merge_dataframes" - ], - "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": 169, - "visitors": 537, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "Copy of PeptideDataAnalysis (imported from uploaded file)", - "path": "topics/proteomics/tutorials/peptide-library-data-analysis/workflows/PeptideDataAnalysis.ga", - "test_results": null, - "tests": false, - "title": "Copy of PeptideDataAnalysis (imported from uploaded file)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-peptide-library-data-analysis/versions/peptidedataanalysis", - "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/peptide-library-data-analysis/workflows/PeptideDataAnalysis.ga", - "wfid": "proteomics-peptide-library-data-analysis", - "wfname": "peptidedataanalysis", - "workflow": "PeptideDataAnalysis.ga" - } - ] - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-05-29", - "pageviews": 5533200, - "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": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "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": "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": "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: 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: 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": [ - "Standardisation and normalisation", - "Clustering", - "Protein quantification", - "Visualisation", - "Filtering", - "Principal component plotting", - "Formatting", - "Statistical calculation", - "Heat map generation", - "Imputation" - ], - "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": "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-02-12", - "objectives": [ - "Perform Database searching using two algorithms", - "Extract confident peptides and proteins", - "Generate a microbial peptide panel for verification" - ], - "pageviews": 112, - "pub_date": "2024-02-06", - "questions": [ - "How to perform database searching?", - "How to extract microbial and Human protein and peptide sequences from the results" - ], - "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": [ - "filter_tabular", - "Cut1", - "Remove beginning1", - "tp_cat", - "fasta_cli", - "Grouping1", - "Grep1", - "peptide_shaker", - "msconvert", - "fasta2tab", - "query_tabular", - "fasta_merge_files_and_filter_unique_sequences", - "Filter1", - "search_gui", - "maxquant" - ], - "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 (Main)", - "url": "https://usegalaxy.org", - "usegalaxy": true - }, - { - "name": "UseGalaxy.org.au", - "url": "https://usegalaxy.org.au", - "usegalaxy": true - } - ], - "inexact": [] - }, - "symlink": null, - "tags": [ - "label-TMT11" - ], - "time_estimation": "3H", - "title": "Clinical-MP-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/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/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": 0, - "video_view": 0, - "visit_duration": 377, - "visitors": 73, - "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": "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": [ - "de Novo sequencing", - "Tag-based peptide identification", - "Protein identification", - "Target-Decoy", - "Expression analysis" - ], - "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-02-12", - "objectives": [ - "Downloading databases related to 16SrRNA data", - "For better identification results, combine host and microbial proteins.", - "Reduced database provides better FDR stats." - ], - "pageviews": 223, - "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?" - ], - "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", - "fasta_merge_files_and_filter_unique_sequences", - "metanovo", - "dbbuilder" - ], - "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-MP-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": 0, - "video_view": 0, - "visit_duration": 233, - "visitors": 135, - "zenodo_link": "https://doi.org/10.5281/zenodo.10105821" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 4.888888888888889, - "feedback_number": 9, - "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": 11412, - "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": 26, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 55, - "visitors": 6800, - "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": "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: 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-04-23", - "objectives": [ - "Verification of peptides helps in confirming the presence of the peptides in our samplle" - ], - "pageviews": 72, - "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" - ], - "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": [ - "uniprotxml_downloader", - "Cut1", - "Remove beginning1", - "tp_cat", - "collapse_dataset", - "Grouping1", - "pepquery2", - "query_tabular", - "fasta_merge_files_and_filter_unique_sequences", - "Filter1" - ], - "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-MP-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/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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 667, - "visitors": 37, - "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": "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": [ - "Standardisation and normalisation", - "Clustering", - "Protein quantification", - "Visualisation", - "Principal component plotting", - "Statistical calculation", - "Heat map generation", - "Imputation" - ], - "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-02-12", - "objectives": [ - "Perform quantitation using MaxQuant and extract microbial and human proteins and peptides." - ], - "pageviews": 58, - "pub_date": "2024-02-06", - "questions": [ - "How to perform quantitation?" - ], - "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-MP-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": 0, - "video_view": 0, - "visit_duration": 353, - "visitors": 34, - "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": "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": [ - "Prediction and recognition", - "Visualisation" - ], - "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-02-12", - "objectives": [ - "Perform group comparison analysis.", - "Analyze significant proteins", - "Look at the taxonomic distribution of the quantified peptides" - ], - "pageviews": 59, - "pub_date": "2024-02-06", - "questions": [ - "Why do we need to interpret the data?", - "Can we visualize the data?" - ], - "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-MP-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": 0, - "video_view": 0, - "visit_duration": 404, - "visitors": 39, - "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": "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": [ - "Sequence composition calculation", - "Sequence alignment analysis", - "Validation", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "Read mapping", - "Genome visualisation", - "Statistical calculation", - "Data handling", - "Sequence trimming" - ], - "edam_topic": [ - "Mapping" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.3544303797468356, - "feedback_number": 79, - "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-05-29", - "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": 5625554, - "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": [ - "trim_galore", - "samtools_stats", - "bowtie2", - "multiqc", - "bamFilter", - "fastqc", - "jbrowse" - ], - "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": 56, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 315, - "visitors": 2036039, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN - Sequence Analyses - Mapping - Jbrowse (imported from uploaded file)", - "path": "topics/sequence-analysis/tutorials/mapping/workflows/mapping-jbrowse.ga", - "test_results": null, - "tests": false, - "title": "GTN - Sequence Analyses - Mapping - Jbrowse (imported from uploaded file)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-mapping/versions/mapping-jbrowse", - "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/mapping/workflows/mapping-jbrowse.ga", - "wfid": "sequence-analysis-mapping", - "wfname": "mapping-jbrowse", - "workflow": "mapping-jbrowse.ga" - }, - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN - Sequence Analyses - Mapping (imported from uploaded file)", - "path": "topics/sequence-analysis/tutorials/mapping/workflows/mapping.ga", - "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)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-mapping/versions/mapping", - "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/mapping/workflows/mapping.ga", - "wfid": "sequence-analysis-mapping", - "wfname": "mapping", - "workflow": "mapping.ga" - } - ], - "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": "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 contamination filtering", - "Sequence trimming", - "Sequence assembly validation" - ], - "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": 203, - "pub_date": "2024-04-16", - "questions": [ - "Are the sequences in a genome assembly contaminant-free?" - ], - "short_id": "T00439", - "short_tools": [ - "ncbi_fcs_gx", - "ncbi_fcs_adaptor" - ], - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 137, - "visitors": 143, - "workflows": [ - { - "creators": [ - { - "class": "Organization", - "name": "National Center for Biotechnology Information", - "url": "https://github.com/ncbi/fcs" - } - ], - "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-06-24 00:06:32 +0000", - "name": "NCBI Foreign Contamination Screen", - "path": "topics/sequence-analysis/tutorials/ncbi-fcs/workflows/NCBI-Foreign-Contamination-Screen.ga", - "test_results": null, - "tests": true, - "title": "NCBI Foreign Contamination Screen", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-ncbi-fcs/versions/ncbi-foreign-contamination-screen", - "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/ncbi-fcs/workflows/NCBI-Foreign-Contamination-Screen.ga", - "wfid": "sequence-analysis-ncbi-fcs", - "wfname": "ncbi-foreign-contamination-screen", - "workflow": "NCBI-Foreign-Contamination-Screen.ga" - } - ], - "zenodo_link": "https://zenodo.org/records/10932013" - }, - { - "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", - "Sequence alignment", - "Read mapping", - "Genome indexing", - "Data handling", - "Sequence file editing" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.fr", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 5.0, - "feedback_number": 7, - "hands_on": true, - "id": "sequence-analysis/human-reads-removal", - "inexact_supported_servers": [ - "Galaxy@AuBi", - "GalaxyTrakr", - "MISSISSIPPI", - "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-03", - "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": 4596, - "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": [ - "tp_replace_in_line", - "trimmomatic", - "samtools_fastx", - "Grep1", - "__ZIP_COLLECTION__", - "seqtk_subseq", - "__UNZIP_COLLECTION__", - "bwa_mem" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": [ - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 144, - "visitors": 3222, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN - Sequence Analyses - Removal of human reads from SARS-CoV-2 sequencing data", - "path": "topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.ga", - "test_results": null, - "tests": false, - "title": "GTN - Sequence Analyses - Removal of human reads from SARS-CoV-2 sequencing data", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-human-reads-removal/versions/human-reads-removal", - "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.ga", - "wfid": "sequence-analysis-human-reads-removal", - "wfname": "human-reads-removal", - "workflow": "human-reads-removal.ga" - } - ] - }, - { - "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": [ - "Sequence composition calculation", - "Validation", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "Box-Whisker plot plotting", - "Scatter plot plotting", - "Statistical calculation", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.601092896174864, - "feedback_number": 183, - "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-05-29", - "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": 5688881, - "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", - "cutadapt", - "pycoqc", - "multiqc", - "fastqc", - "fastqe" - ], - "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": 121, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 336, - "visitors": 2063672, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:32 +0000", - "name": "GTN - Sequence Analyses - Quality Control (imported from uploaded file)", - "path": "topics/sequence-analysis/tutorials/quality-control/workflows/quality_control.ga", - "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)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-quality-control/versions/quality_control", - "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/quality-control/workflows/quality_control.ga", - "wfid": "sequence-analysis-quality-control", - "wfname": "quality_control", - "workflow": "quality_control.ga" - } - ], - "zenodo_link": "https://zenodo.org/records/61771" - }, - { - "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": "7bd37d6decd9", - "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: 7bd37d6decd9\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": [ - "Sequence read processing", - "Demultiplexing", - "Sequencing quality control", - "Visualisation", - "Sequence file editing", - "Taxonomic classification", - "Phylogenetic analysis", - "DNA barcoding", - "Data handling", - "Sequence clustering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.fr" - ], - "feedback_mean_note": 3.0, - "feedback_number": 1, - "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": 1429, - "pub_date": "2024-01-08", - "questions": [ - "How to clean Sanger sequencing files?" - ], - "short_id": "T00383", - "short_tools": [ - "cshl_fastx_reverse_complement", - "cshl_fastq_to_fasta", - "unzip", - "regex1", - "__FILTER_FROM_FILE__", - "ab1_fastq_converter", - "ncbi_blastn_wrapper", - "collection_element_identifiers", - "qiime_align_seqs", - "aligned_to_consensus", - "__SORTLIST__", - "fastq_to_tabular", - "fastq_groomer", - "mothur_degap_seqs", - "mothur_merge_files", - "filter_by_fasta_ids", - "seqtk_mergepe", - "fastq_masker_by_quality", - "tab2fasta", - "seqtk_trimfq" - ], - "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": 11, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 157, - "visitors": 1081, - "workflows": [ - { - "creators": [ - { - "class": "Organization", - "name": "Coline Royaux" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Sanger1 : From AB1 to aligned consensus and primers fasta + BLAST", - "path": "topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Sanger1_From-AB1-to-aligned-consensus-and-primers-fasta-+-BLAST.ga", - "test_results": null, - "tests": true, - "title": "Sanger1 : From AB1 to aligned consensus and primers fasta + BLAST", - "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", - "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", - "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" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "https://orcid.org/0000-0003-4308-5617", - "name": "Coline Royaux" - } - ], - "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-06-24 00:06:32 +0000", - "name": "Training Sanger sequences CHD8", - "path": "topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Training-Sanger-sequences-CHD8.ga", - "test_results": null, - "tests": true, - "title": "Training Sanger sequences CHD8", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-Manage_AB1_Sanger/versions/training-sanger-sequences-chd8", - "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Training-Sanger-sequences-CHD8.ga", - "wfid": "sequence-analysis-Manage_AB1_Sanger", - "wfname": "training-sanger-sequences-chd8", - "workflow": "Training-Sanger-sequences-CHD8.ga" - } - ], - "zenodo_link": "https://zenodo.org/records/7104640" - }, - { - "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", - "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" - } - ], - "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": "2023-11-03", - "objectives": [ - "Load FASTA sequence into Galaxy", - "Perform NCBI-Blast+ analysis against MAdLandDB" - ], - "pageviews": 1225, - "pub_date": "2023-01-16", - "questions": [ - "What is MAdLand DB?", - "How can we perform Blast analysis on Galaxy?" - ], - "short_id": "T00238", - "short_tools": [ - "bg_diamond", - "ncbi_blastp_wrapper", - "ncbi_blastx_wrapper" - ], - "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, - "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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 163, - "visitors": 937, - "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": [ - "Sequence composition calculation", - "Generation", - "Read mapping", - "Genome visualisation", - "Statistical calculation", - "Genome indexing", - "Sequence alignment", - "Sequencing quality control" - ], - "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", - "MISSISSIPPI", - "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": 811, - "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": [ - "bwa_mem", - "fastqc", - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 259, - "visitors": 616, - "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": "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": [ - "RNA-Seq quantification", - "Sequence alignment analysis", - "Sequence alignment", - "Validation", - "Read summarisation", - "Data handling", - "Sequencing quality control" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.2, - "feedback_number": 10, - "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": 5538811, - "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": [ - "featurecounts", - "umi_tools_count", - "__FLATTEN__", - "tp_sed_tool", - "samtools_stats", - "umi_tools_extract", - "multiqc", - "collection_column_join", - "bamFilter", - "rna_star" - ], - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 293, - "visitors": 1988456, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "CelSeq2: Multi Batch (mm10)", - "path": "topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_mp_celseq.ga", - "test_results": null, - "tests": false, - "title": "CelSeq2: Multi Batch (mm10)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-preprocessing/versions/scrna_mp_celseq", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_mp_celseq.ga", - "wfid": "single-cell-scrna-preprocessing", - "wfname": "scrna_mp_celseq", - "workflow": "scrna_mp_celseq.ga" - }, - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "CelSeq2: Single Batch (mm10)", - "path": "topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_pp_celseq.ga", - "test_results": null, - "tests": false, - "title": "CelSeq2: Single Batch (mm10)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-preprocessing/versions/scrna_pp_celseq", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_pp_celseq.ga", - "wfid": "single-cell-scrna-preprocessing", - "wfname": "scrna_pp_celseq", - "workflow": "scrna_pp_celseq.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3253142" - }, - { - "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": "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": [ - "Loading", - "Community profiling", - "Validation", - "Sequence alignment", - "Sequencing quality control" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 3.7, - "feedback_number": 20, - "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-05-29", - "objectives": [ - "Demultiplex single-cell FASTQ data from 10X Genomics", - "Learn about transparent matrix formats", - "Understand the importance of high and low quality cells" - ], - "pageviews": 9893, - "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": [ - "multiqc", - "rna_starsolo", - "dropletutils" - ], - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 107, - "visitors": 7636, - "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" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Preprocessing of 10X scRNA-seq data", - "path": "topics/single-cell/tutorials/scrna-preprocessing-tenx/workflows/scRNA-seq-Preprocessing-TenX.ga", - "test_results": null, - "tests": true, - "title": "Preprocessing of 10X scRNA-seq data", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-preprocessing-tenx/versions/scrna-seq-preprocessing-tenx", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing-tenx/workflows/scRNA-seq-Preprocessing-TenX.ga", - "wfid": "single-cell-scrna-preprocessing-tenx", - "wfname": "scrna-seq-preprocessing-tenx", - "workflow": "scRNA-seq-Preprocessing-TenX.ga" - } - ], - "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": "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": "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": "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: 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: 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": "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": 462, - "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": [ - "tp_tail_tool", - "sceasy_convert", - "Cut1", - "regexColumn1", - "dropletutils_read_10x", - "scanpy_filter_cells", - "dropletutils", - "anndata_inspect", - "anndata_ops", - "seurat_read10x", - "datamash_transpose", - "tp_cut_tool", - "join1", - "monocle3_create", - "Filter1", - "fastq_to_tabular", - "tabular_to_fastq" - ], - "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": 77, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 145, - "visitors": 366, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - } - ], - "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-06-24 00:06:33 +0000", - "name": "AnnData to Cell Data Set (CDS) conversion", - "path": "topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Cell-Data-Set-(CDS)-conversion.ga", - "test_results": null, - "tests": true, - "title": "AnnData to Cell Data Set (CDS) conversion", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Cell-Data-Set-(CDS)-conversion.ga", - "wfid": "single-cell-scrna-data-ingest", - "wfname": "anndata-to-cell-data-set-(cds)-conversion", - "workflow": "AnnData-to-Cell-Data-Set-(CDS)-conversion.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - }, - { - "class": "Person", - "identifier": "0009-0008-9422-6380", - "name": "Morgan Howells" - } - ], - "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-06-24 00:06:33 +0000", - "name": "AnnData to Seurat conversion", - "path": "topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Seurat-conversion.ga", - "test_results": null, - "tests": true, - "title": "AnnData to Seurat conversion", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-data-ingest/versions/anndata-to-seurat-conversion", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Seurat-conversion.ga", - "wfid": "single-cell-scrna-data-ingest", - "wfname": "anndata-to-seurat-conversion", - "workflow": "AnnData-to-Seurat-conversion.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - }, - { - "class": "Person", - "identifier": "0009-0008-9422-6380", - "name": "Morgan Howells" - } - ], - "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-06-24 00:06:33 +0000", - "name": "AnnData to SingleCellExperiment (SCE) conversion", - "path": "topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-SingleCellExperiment-(SCE)-conversion.ga", - "test_results": null, - "tests": true, - "title": "AnnData to SingleCellExperiment (SCE) conversion", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-data-ingest/versions/anndata-to-singlecellexperiment-(sce)-conversion", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-SingleCellExperiment-(SCE)-conversion.ga", - "wfid": "single-cell-scrna-data-ingest", - "wfname": "anndata-to-singlecellexperiment-(sce)-conversion", - "workflow": "AnnData-to-SingleCellExperiment-(SCE)-conversion.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4574153" - }, - { - "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": "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": 3.75, - "feedback_number": 4, - "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-13", - "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": 3176, - "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": [ - "sceasy_convert", - "Cut1", - "alevin", - "dropletutils_read_10x", - "_dropletBarcodePlot", - "dropletutils_empty_drops", - "_salmon_kallisto_mtx_to_10x", - "join1", - "_ensembl_gtf2gene_list" - ], - "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": 33, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 171, - "visitors": 2133, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - }, - { - "class": "Person", - "identifier": "0000-0002-8170-8806", - "name": "Wendi Bacon" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Generating a single cell matrix using Alevin", - "path": "topics/single-cell/tutorials/scrna-case_alevin/workflows/Generating-a-single-cell-matrix-using-Alevin.ga", - "test_results": null, - "tests": true, - "title": "Generating a single cell matrix using Alevin", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_alevin/workflows/Generating-a-single-cell-matrix-using-Alevin.ga", - "wfid": "single-cell-scrna-case_alevin", - "wfname": "generating-a-single-cell-matrix-using-alevin", - "workflow": "Generating-a-single-cell-matrix-using-Alevin.ga" - } - ], - "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": "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": [ - "Enrichment analysis", - "Sequence composition calculation", - "Generation", - "Differential gene expression analysis", - "Genome indexing", - "Mapping", - "Sequencing quality control", - "Peak calling", - "Gene regulatory network analysis", - "Read mapping", - "Statistical calculation", - "Sequence alignment", - "Imputation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "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/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": "2023-11-03", - "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": 3664, - "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": [ - "fastqc", - "bedtools_sortbed", - "macs2_callpeak", - "sinto_fragments", - "anndata_inspect", - "episcanpy_build_matrix", - "sinto_barcode", - "bwa_mem", - "episcanpy_preprocess", - "tp_sorted_uniq", - "scanpy_plot" - ], - "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 - } - ], - "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": 3090, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-5192-126X", - "name": "Pavankumar Videm" - } - ], - "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-06-24 00:06:33 +0000", - "name": "scATAC-seq Count Matrix Filtering", - "path": "topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-Count-Matrix-Filtering.ga", - "test_results": null, - "tests": true, - "title": "scATAC-seq Count Matrix Filtering", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scatac-preprocessing-tenx/versions/scatac-seq-count-matrix-filtering", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-Count-Matrix-Filtering.ga", - "wfid": "single-cell-scatac-preprocessing-tenx", - "wfname": "scatac-seq-count-matrix-filtering", - "workflow": "scATAC-seq-Count-Matrix-Filtering.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-5192-126X", - "name": "Pavankumar Videm" - } - ], - "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-06-24 00:06:33 +0000", - "name": "scATAC-seq FASTQ to Count Matrix", - "path": "topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-FASTQ-to-Count-Matrix.ga", - "test_results": null, - "tests": true, - "title": "scATAC-seq FASTQ to Count Matrix", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-FASTQ-to-Count-Matrix.ga", - "wfid": "single-cell-scatac-preprocessing-tenx", - "wfname": "scatac-seq-fastq-to-count-matrix", - "workflow": "scATAC-seq-FASTQ-to-Count-Matrix.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7855968" - }, - { - "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": "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)" - ], - "feedback_mean_note": 5.0, - "feedback_number": 2, - "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": [ - "UseGalaxy.org.au" - ], - "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-05-29", - "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": 3390, - "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_inspect_eset", - "music_deconvolution", - "music_construct_eset" - ], - "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 - } - ], - "inexact": [ - { - "name": "UseGalaxy.org.au", - "url": "https://usegalaxy.org.au", - "usegalaxy": true - } - ] - }, - "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": 13, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 97, - "visitors": 2646, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "MuSiC Workflow", - "path": "topics/single-cell/tutorials/bulk-music/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "MuSiC Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music/workflows/main_workflow.ga", - "wfid": "single-cell-bulk-music", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/5719228" - }, - { - "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": [ - "Sequence visualisation", - "Sequencing quality control", - "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-03", - "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": 578, - "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_create_qcmetric_ready_sce", - "scater_filter", - "scater_plot_pca" - ], - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 45, - "visitors": 511, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Scater", - "path": "topics/single-cell/tutorials/scrna-scater-qc/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Scater", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-scater-qc/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-scater-qc/workflows/main_workflow.ga", - "wfid": "single-cell-scrna-scater-qc", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3386291" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-05-29", - "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": 5419160, - "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": 6, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1949674, - "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": "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-01-17", - "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": 175, - "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": 31, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 159, - "visitors": 152, - "zenodo_link": null - }, - { - "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": 5.0, - "feedback_number": 5, - "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-03", - "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": 800, - "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": [ - "raceid_inspectclusters", - "raceid_clustering", - "tp_sed_tool", - "raceid_inspecttrajectory", - "raceid_trajectory", - "datamash_ops", - "tp_head_tool", - "raceid_filtnormconf", - "datamash_transpose" - ], - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 71, - "visitors": 677, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "RaceID Workflow", - "path": "topics/single-cell/tutorials/scrna-raceid/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "RaceID Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-raceid/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-raceid/workflows/main_workflow.ga", - "wfid": "single-cell-scrna-raceid", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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": "Single Cell", - "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: Single Cell\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": "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": "2023-12-15", - "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": 167, - "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": [ - "sceasy_convert", - "tp_grep_tool", - "hca_matrix_downloader", - "tp_find_and_replace", - "anndata_ops", - "seurat_read10x", - "regexColumn1", - "scanpy_read_10x", - "retrieve_scxa" - ], - "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": 29, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 145, - "visitors": 122, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - } - ], - "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-06-24 00:06:33 +0000", - "name": "EBI SCXA to AnnData (Scanpy) or Seurat Object", - "path": "topics/single-cell/tutorials/EBI-retrieval/workflows/EBI-SCXA-to-AnnData-(Scanpy)-or-Seurat-Object.ga", - "test_results": null, - "tests": true, - "title": "EBI SCXA to AnnData (Scanpy) or Seurat Object", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/EBI-retrieval/workflows/EBI-SCXA-to-AnnData-(Scanpy)-or-Seurat-Object.ga", - "wfid": "single-cell-EBI-retrieval", - "wfname": "ebi-scxa-to-anndata-(scanpy)-or-seurat-object", - "workflow": "EBI-SCXA-to-AnnData-(Scanpy)-or-Seurat-Object.ga" - } - ] - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "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-06", - "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": 1802, - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 43, - "visitors": 1623, - "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": "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" - } - ], - "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": 3.076923076923077, - "feedback_number": 13, - "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-05-29", - "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": 5540399, - "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_import", - "tp_tail_tool", - "scanpy_remove_confounders", - "tp_replace_in_line", - "scanpy_cluster_reduce_dimension", - "scanpy_filter", - "tp_awk_tool", - "scanpy_normalize", - "anndata_inspect", - "datamash_ops", - "cat1", - "scanpy_inspect", - "anndata_manipulate", - "Filter1", - "tp_grep_tool", - "scanpy_plot" - ], - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 275, - "visitors": 1989066, - "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" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Clustering 3k PBMC with Scanpy", - "path": "topics/single-cell/tutorials/scrna-scanpy-pbmc3k/workflows/Clustering-3k-PBMC-with-Scanpy.ga", - "test_results": null, - "tests": true, - "title": "Clustering 3k PBMC with Scanpy", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-scanpy-pbmc3k/versions/clustering-3k-pbmc-with-scanpy", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-scanpy-pbmc3k/workflows/Clustering-3k-PBMC-with-Scanpy.ga", - "wfid": "single-cell-scrna-scanpy-pbmc3k", - "wfname": "clustering-3k-pbmc-with-scanpy", - "workflow": "Clustering-3k-PBMC-with-Scanpy.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3581213" - }, - { - "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": "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-13", - "objectives": [ - "Combine data matrices from different samples in the same experiment", - "Label the metadata for downstream processing" - ], - "pageviews": 2238, - "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": [ - "Cut1", - "tp_replace_in_column", - "anndata_inspect", - "anndata_ops", - "anndata_manipulate", - "scanpy_read_10x", - "retrieve_scxa", - "Paste1" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 135, - "visitors": 1552, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - }, - { - "class": "Person", - "identifier": "0000-0002-8170-8806", - "name": "Wendi Bacon" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Combining datasets after pre-processing", - "path": "topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/workflows/Combining-datasets-after-pre-processing.ga", - "test_results": null, - "tests": true, - "title": "Combining datasets after pre-processing", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/workflows/Combining-datasets-after-pre-processing.ga", - "wfid": "single-cell-scrna-case_alevin-combine-datasets", - "wfname": "combining-datasets-after-pre-processing", - "workflow": "Combining-datasets-after-pre-processing.ga" - } - ], - "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": "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": "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-12", - "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": 1474, - "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": [ - "table_compute", - "scanpy_cluster_reduce_dimension", - "addValue", - "anndata_inspect", - "cat1", - "scanpy_regress_variable", - "sort1", - "tp_easyjoin_tool", - "anndata_manipulate", - "scanpy_inspect", - "scanpy_plot" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 49, - "visitors": 1213, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Cell Cycle Regression Workflow", - "path": "topics/single-cell/tutorials/scrna-case_cell-cycle/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Cell Cycle Regression Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_cell-cycle/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_cell-cycle/workflows/main_workflow.ga", - "wfid": "single-cell-scrna-case_cell-cycle", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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-06-06", - "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": 1610, - "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?" - ], - "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": 34, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 76, - "visitors": 1392, - "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": [ - "Statistical calculation", - "Sequence composition calculation", - "Sequencing quality control" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.142857142857143, - "feedback_number": 21, - "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-05-29", - "objectives": [ - "Demultiplex FASTQ data via UMI-tools", - "Understand and validate the extraction of barcodes" - ], - "pageviews": 5677, - "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": [ - "fastqc", - "umi_tools_extract", - "seq_filter_by_id" - ], - "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 68, - "visitors": 4446, - "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": "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-04", - "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": 123, - "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_parameter_iterator", - "scanpy_plot_embed", - "scanpy_run_umap", - "scanpy_find_cluster", - "scanpy_compute_graph", - "scanpy_run_tsne" - ], - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 85, - "visitors": 106, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Scanpy Parameter Iterator workflow full (imported from URL)", - "path": "topics/single-cell/tutorials/scanpy_parameter_iterator/workflows/Scanpy-Parameter-Iterator-workflow-full.ga", - "test_results": null, - "tests": true, - "title": "Scanpy Parameter Iterator workflow full (imported from URL)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scanpy_parameter_iterator/versions/scanpy-parameter-iterator-workflow-full", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scanpy_parameter_iterator/workflows/Scanpy-Parameter-Iterator-workflow-full.ga", - "wfid": "single-cell-scanpy_parameter_iterator", - "wfname": "scanpy-parameter-iterator-workflow-full", - "workflow": "Scanpy-Parameter-Iterator-workflow-full.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/8011681" - }, - { - "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-05-29", - "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": 2226, - "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_import", - "scanpy_remove_confounders", - "scanpy_cluster_reduce_dimension", - "scanpy_filter", - "scanpy_normalize", - "anndata_manipulate", - "scanpy_inspect", - "scanpy_plot" - ], - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 79, - "visitors": 1769, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "scRNA Plant Analysis", - "path": "topics/single-cell/tutorials/scrna-plant/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "scRNA Plant Analysis", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-plant/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-plant/workflows/main_workflow.ga", - "wfid": "single-cell-scrna-plant", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4597857" - }, - { - "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": "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": 148, - "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_import", - "Cut1", - "scanpy_filter_cells", - "tp_replace_in_column", - "unzip", - "anndata_inspect", - "anndata_ops", - "anndata_manipulate", - "Paste1" - ], - "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": 51, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 96, - "visitors": 123, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0009-0008-9422-6380", - "name": "Morgan Howells" - }, - { - "class": "Person", - "identifier": "0000-0002-5192-126X", - "name": "Pavankumar Videm" - } - ], - "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-06-24 00:06:33 +0000", - "name": "NCBI to Anndata", - "path": "topics/single-cell/tutorials/scrna-ncbi-anndata/workflows/NCBI_to_Anndata.ga", - "test_results": null, - "tests": true, - "title": "NCBI to Anndata", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-ncbi-anndata/versions/ncbi_to_anndata", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-ncbi-anndata/workflows/NCBI_to_Anndata.ga", - "wfid": "single-cell-scrna-ncbi-anndata", - "wfname": "ncbi_to_anndata", - "workflow": "NCBI_to_Anndata.ga" - } - ], - "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": "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": 4.4, - "feedback_number": 5, - "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-13", - "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": 5531, - "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_find_markers", - "Cut1", - "scanpy_normalise_data", - "scanpy_run_umap", - "scanpy_plot", - "scanpy_find_variable_genes", - "anndata_inspect", - "anndata_ops", - "scanpy_filter_genes", - "scanpy_find_cluster", - "scanpy_run_tsne", - "scanpy_scale_data", - "scanpy_run_pca", - "scanpy_compute_graph", - "join1", - "interactive_tool_cellxgene", - "scanpy_filter_cells", - "anndata_manipulate", - "scanpy_plot_embed" - ], - "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": 41, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 148, - "visitors": 3489, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "CS3_Filter, Plot and Explore Single-cell RNA-seq Data", - "path": "topics/single-cell/tutorials/scrna-case_basic-pipeline/workflows/CS3_Filter,_Plot_and_Explore_Single-cell_RNA-seq_Data.ga", - "test_results": null, - "tests": false, - "title": "CS3_Filter, Plot and Explore Single-cell RNA-seq Data", - "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", - "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", - "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" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-8170-8806", - "name": "Wendi Bacon" - }, - { - "class": "Person", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Filter, Plot and Explore Single-cell RNA-seq Data updated", - "path": "topics/single-cell/tutorials/scrna-case_basic-pipeline/workflows/Filter,-Plot-and-Explore-Single-cell-RNA-seq-Data-updated.ga", - "test_results": null, - "tests": true, - "title": "Filter, Plot and Explore Single-cell RNA-seq Data updated", - "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", - "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", - "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" - } - ], - "zenodo_link": "https://zenodo.org/record/7053673" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "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-09", - "objectives": [ - "How to set up plates to prevent batch effect", - "Proper naming conventions when dealing with scRNA-seq samples" - ], - "pageviews": 5533203, - "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": 4, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183, - "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": "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": 4.6, - "feedback_number": 5, - "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-05-29", - "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": 2962, - "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": 37, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 81, - "visitors": 2498, - "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": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_find_clusters", - "owner": "ebi-gxa", - "revisions": "d541e9e62beb", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_find_markers", - "owner": "ebi-gxa", - "revisions": "07fc9f4841b3", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_find_neighbours", - "owner": "ebi-gxa", - "revisions": "ba897c57bdd9", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_find_variable_genes", - "owner": "ebi-gxa", - "revisions": "948fc0276b4f", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_normalise_data", - "owner": "ebi-gxa", - "revisions": "3f49bc9c9213", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_plot", - "owner": "ebi-gxa", - "revisions": "95d79f1134f0", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_read10x", - "owner": "ebi-gxa", - "revisions": "f5db0e853f57", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_run_pca", - "owner": "ebi-gxa", - "revisions": "8ded486b0014", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_run_umap", - "owner": "ebi-gxa", - "revisions": "b9424c715a0d", - "tool_panel_section_label": "Single Cell", - "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" - }, - { - "name": "seurat_scale_data", - "owner": "ebi-gxa", - "revisions": "5e9ba303f9e1", - "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: 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: Single Cell\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: Single Cell\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: Single Cell\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: Single Cell\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: Single Cell\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: Single Cell\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: Single Cell\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: Single Cell\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: Single Cell\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: Single Cell\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: 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-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" - ], - "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": 270, - "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_plot", - "seurat_find_neighbours", - "seurat_filter_cells", - "seurat_run_umap", - "seurat_find_markers", - "seurat_normalise_data", - "seurat_read10x", - "seurat_scale_data", - "seurat_find_variable_genes", - "seurat_run_pca", - "retrieve_scxa", - "seurat_find_clusters" - ], - "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 - } - ], - "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": 78, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 26, - "visitors": 238, - "zenodo_link": "https://zenodo.org/record/7053673" - }, - { - "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": "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": "2023-12-14", - "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": 997, - "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": [ - "music_construct_eset", - "table_compute", - "Cut1", - "annotatemyids", - "tp_sed_tool", - "tp_awk_tool", - "anndata_inspect", - "regex1", - "music_manipulate_eset", - "sort1", - "datamash_transpose", - "tp_cut_tool", - "tp_easyjoin_tool", - "scanpy_read_10x", - "join1", - "retrieve_scxa", - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 126, - "visitors": 556, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-8170-8806", - "name": "Wendi Bacon" - }, - { - "class": "Person", - "identifier": "0000-0002-4181-2676", - "name": "Mehmet Tekman" - } - ], - "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-06-24 00:06:33 +0000", - "name": "MuSiC-Deconvolution: Data generation | sc | matrix + ESet", - "path": "topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_matrix.ga", - "test_results": null, - "tests": false, - "title": "MuSiC-Deconvolution: Data generation | sc | matrix + ESet", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music-2-preparescref/versions/sc_matrix", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_matrix.ga", - "wfid": "single-cell-bulk-music-2-preparescref", - "wfname": "sc_matrix", - "workflow": "sc_matrix.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-8170-8806", - "name": "Wendi Bacon" - }, - { - "class": "Person", - "identifier": "0000-0002-4181-2676", - "name": "Mehmet Tekman" - } - ], - "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-06-24 00:06:33 +0000", - "name": "MuSiC-Deconvolution: Data generation | sc | metadata", - "path": "topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_metadata.ga", - "test_results": null, - "tests": false, - "title": "MuSiC-Deconvolution: Data generation | sc | metadata", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music-2-preparescref/versions/sc_metadata", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_metadata.ga", - "wfid": "single-cell-bulk-music-2-preparescref", - "wfname": "sc_metadata", - "workflow": "sc_metadata.ga" - } - ] - }, - { - "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": "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-03", - "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": 275, - "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": 22, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 55, - "visitors": 151, - "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" - } - ], - "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-06-24 00:06:33 +0000", - "name": "MuSiC-Deconvolution: Compare", - "path": "topics/single-cell/tutorials/bulk-music-4-compare/workflows/compare.ga", - "test_results": null, - "tests": false, - "title": "MuSiC-Deconvolution: Compare", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music-4-compare/versions/compare", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-4-compare/workflows/compare.ga", - "wfid": "single-cell-bulk-music-4-compare", - "wfname": "compare", - "workflow": "compare.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7319925" - }, - { - "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": "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": 363, - "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": [ - "scanpy_plot_embed", - "scanpy_run_diffmap", - "scanpy_run_dpt", - "scanpy_run_paga", - "scanpy_run_fdg", - "anndata_manipulate", - "scanpy_find_cluster", - "scanpy_compute_graph", - "scanpy_plot_trajectory" - ], - "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": 31, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 149, - "visitors": 299, - "workflows": [ - { - "creators": [ - { - "class": "Organization", - "name": "Marisa Loach" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Inferring Trajectories with Scanpy Tutorial Workflow", - "path": "topics/single-cell/tutorials/scrna-case_trajectories/workflows/inferring-trajectories-with-scanpy-workflow.ga", - "test_results": null, - "tests": true, - "title": "Inferring Trajectories with Scanpy Tutorial Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_trajectories/versions/inferring-trajectories-with-scanpy-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_trajectories/workflows/inferring-trajectories-with-scanpy-workflow.ga", - "wfid": "single-cell-scrna-case_trajectories", - "wfname": "inferring-trajectories-with-scanpy-workflow", - "workflow": "inferring-trajectories-with-scanpy-workflow.ga" - } - ], - "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-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-09", - "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": 998879, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 146, - "visitors": 428528 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "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-06", - "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": 3632, - "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": 114, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 54, - "visitors": 3142, - "zenodo_link": "https://zenodo.org/record/7455590" - }, - { - "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": "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": "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": 5.0, - "feedback_number": 1, - "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-13", - "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": 3258, - "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": [ - "monocle3_preprocess", - "monocle3_reduceDim", - "monocle3_orderCells", - "Cut1", - "regexColumn1", - "monocle3_diffExp", - "monocle3_partition", - "anndata_inspect", - "monocle3_topmarkers", - "monocle3_plotCells", - "datamash_transpose", - "tp_cut_tool", - "join1", - "monocle3_create", - "Filter1", - "monocle3_learnGraph" - ], - "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": 34, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 94, - "visitors": 2570, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "AnnData object to Monocle input files", - "path": "topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-AnnData_object_to_Monocle_input_files.ga", - "test_results": null, - "tests": false, - "title": "AnnData object to Monocle input files", - "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", - "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", - "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" - }, - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Monocle3 workflow", - "path": "topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-Monocle3_workflow.ga", - "test_results": null, - "tests": false, - "title": "Monocle3 workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_monocle3-trajectories/versions/galaxy-workflow-monocle3_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-Monocle3_workflow.ga", - "wfid": "single-cell-scrna-case_monocle3-trajectories", - "wfname": "galaxy-workflow-monocle3_workflow", - "workflow": "Galaxy-Workflow-Monocle3_workflow.ga" - }, - { - "creators": [ - { - "class": "Organization", - "identifier": "0009-0001-2017-8805", - "name": "Julia Jakiela" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Trajectory analysis using Monocle3 - full tutorial workflow", - "path": "topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Trajectory-analysis-using-Monocle3---full-tutorial-workflow.ga", - "test_results": null, - "tests": true, - "title": "Trajectory analysis using Monocle3 - full tutorial workflow", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Trajectory-analysis-using-Monocle3---full-tutorial-workflow.ga", - "wfid": "single-cell-scrna-case_monocle3-trajectories", - "wfname": "trajectory-analysis-using-monocle3---full-tutorial-workflow", - "workflow": "Trajectory-analysis-using-Monocle3---full-tutorial-workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/records/10397366" - }, - { - "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": "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": "2023-12-14", - "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": 820, - "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", - "table_compute", - "annotatemyids", - "tp_sed_tool", - "tp_awk_tool", - "column_remove_by_header", - "regex1", - "music_manipulate_eset", - "sort1", - "tp_cut_tool", - "tp_easyjoin_tool" - ], - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 103, - "visitors": 444, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-8170-8806", - "name": "Wendi Bacon" - }, - { - "class": "Person", - "identifier": "0000-0002-4181-2676", - "name": "Mehmet Tekman" - } - ], - "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-06-24 00:06:33 +0000", - "name": "MuSiC-Deconvolution: Data generation | bulk | ESet", - "path": "topics/single-cell/tutorials/bulk-music-3-preparebulk/workflows/bulk_ESet.ga", - "test_results": null, - "tests": false, - "title": "MuSiC-Deconvolution: Data generation | bulk | ESet", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music-3-preparebulk/versions/bulk_eset", - "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-3-preparebulk/workflows/bulk_ESet.ga", - "wfid": "single-cell-bulk-music-3-preparebulk", - "wfname": "bulk_eset", - "workflow": "bulk_ESet.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7319173" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-09", - "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": 2446887, - "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": 141, - "visitors": 1027297 - }, - { - "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": 4.0, - "feedback_number": 1, - "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": 9569, - "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_regression_performance_plots", - "plotly_ml_performance_plots", - "sklearn_ensemble", - "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": 42, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 41, - "visitors": 5145, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Classification LSVC", - "path": "topics/statistics/tutorials/classification_regression/workflows/classification_LSVC.ga", - "test_results": null, - "tests": true, - "title": "Classification LSVC", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-classification_regression/versions/classification_lsvc", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_regression/workflows/classification_LSVC.ga", - "wfid": "statistics-classification_regression", - "wfname": "classification_lsvc", - "workflow": "classification_LSVC.ga" - }, - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Regression GradientBoosting", - "path": "topics/statistics/tutorials/classification_regression/workflows/regression_GradientBoosting.ga", - "test_results": null, - "tests": true, - "title": "Regression GradientBoosting", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-classification_regression/versions/regression_gradientboosting", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_regression/workflows/regression_GradientBoosting.ga", - "wfid": "statistics-classification_regression", - "wfname": "regression_gradientboosting", - "workflow": "regression_GradientBoosting.ga" - } - ], - "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": 5.0, - "feedback_number": 8, - "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": 12948, - "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": 29, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 58, - "visitors": 7506, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Clustering in Machine Learning", - "path": "topics/statistics/tutorials/clustering_machinelearning/workflows/clustering.ga", - "test_results": null, - "tests": true, - "title": "Clustering in Machine Learning", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-clustering_machinelearning/versions/clustering", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/clustering_machinelearning/workflows/clustering.ga", - "wfid": "statistics-clustering_machinelearning", - "wfname": "clustering", - "workflow": "clustering.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3813447" - }, - { - "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": [ - "Differentially-methylated region identification", - "Differential gene expression analysis", - "Peak calling", - "Comparison", - "Genome annotation" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 1.5, - "feedback_number": 2, - "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-03", - "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": 431, - "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": 33, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 181, - "visitors": 316, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Workflow Constructed From History 'IWTomics Workflow'", - "path": "topics/statistics/tutorials/iwtomics/workflows/IWTomics_Workflow.ga", - "test_results": null, - "tests": false, - "title": "Workflow Constructed From History 'IWTomics Workflow'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-iwtomics/versions/iwtomics_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/iwtomics/workflows/IWTomics_Workflow.ga", - "wfid": "statistics-iwtomics", - "wfname": "iwtomics_workflow", - "workflow": "IWTomics_Workflow.ga" - } - ], - "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": "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": 4.7272727272727275, - "feedback_number": 11, - "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": 2650, - "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": 31, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 171, - "visitors": 1895, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Machine Learning", - "path": "topics/statistics/tutorials/machinelearning/workflows/machine_learning.ga", - "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", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-machinelearning/versions/machine_learning", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/machinelearning/workflows/machine_learning.ga", - "wfid": "statistics-machinelearning", - "wfname": "machine_learning", - "workflow": "machine_learning.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/1468039" - }, - { - "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": 5.0, - "feedback_number": 2, - "hands_on": true, - "id": "statistics/fruit_360", - "inexact_supported_servers": [], - "js_requirements": { - "mathjax": 24690, - "mermaid": false - }, - "layout": "tutorial_hands_on", - "license": "CC-BY-4.0", - "mod_date": "2024-05-29", - "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": 3904006, - "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": [ - "tp_cut_tool", - "model_prediction", - "keras_train_and_eval", - "sklearn_to_categorical", - "keras_model_config", - "keras_model_builder", - "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": [] - }, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 196, - "visitors": 1498160, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "name": "Kaivan Kamali" - } - ], - "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-06-24 00:06:33 +0000", - "name": "fruit_360", - "path": "topics/statistics/tutorials/fruit_360/workflows/fruit_360.ga", - "test_results": null, - "tests": false, - "title": "fruit_360", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-fruit_360/versions/fruit_360", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/fruit_360/workflows/fruit_360.ga", - "wfid": "statistics-fruit_360", - "wfname": "fruit_360", - "workflow": "fruit_360.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/5702887" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": "2023-11-03", - "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": 1031, - "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": [ - "Filter1", - "Cut1", - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 81, - "visitors": 793, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "gpu_jupytool", - "path": "topics/statistics/tutorials/gpu_jupyter_lab/workflows/gpu_jupyterlab_as_jupytool.ga", - "test_results": null, - "tests": false, - "title": "gpu_jupytool", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-gpu_jupyter_lab/versions/gpu_jupyterlab_as_jupytool", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/gpu_jupyter_lab/workflows/gpu_jupyterlab_as_jupytool.ga", - "wfid": "statistics-gpu_jupyter_lab", - "wfname": "gpu_jupyterlab_as_jupytool", - "workflow": "gpu_jupyterlab_as_jupytool.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/6091361" - }, - { - "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": 4.333333333333333, - "feedback_number": 18, - "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-05-29", - "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": 3073, - "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": [ - "Remove beginning1", - "sklearn_build_pipeline", - "sklearn_ensemble", - "sklearn_generalized_linear", - "sklearn_searchcv", - "plotly_regression_performance_plots" - ], - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 55, - "visitors": 2487, - "workflows": [ - { - "creators": [ - { - "class": "Organization", - "identifier": "https://orcid.org/0000-0002-2068-4695", - "name": "Anup Kumar" - } - ], - "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-06-24 00:06:33 +0000", - "name": "ml_regression", - "path": "topics/statistics/tutorials/regression_machinelearning/workflows/ml_regression.ga", - "test_results": null, - "tests": true, - "title": "ml_regression", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-regression_machinelearning/versions/ml_regression", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/regression_machinelearning/workflows/ml_regression.ga", - "wfid": "statistics-regression_machinelearning", - "wfname": "ml_regression", - "workflow": "ml_regression.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/2545213" - }, - { - "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": "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: 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": 4.7272727272727275, - "feedback_number": 11, - "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-05-29", - "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": 3002, - "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": [ - "Remove beginning1", - "sklearn_build_pipeline", - "plotly_ml_performance_plots", - "sklearn_ensemble", - "sklearn_generalized_linear", - "sklearn_nn_classifier", - "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/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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 120, - "visitors": 1954, - "workflows": [ - { - "creators": [ - { - "class": "Organization", - "identifier": "https://orcid.org/0000-0002-2068-4695", - "name": "Anup Kumar" - } - ], - "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-06-24 00:06:33 +0000", - "name": "ml_classification", - "path": "topics/statistics/tutorials/classification_machinelearning/workflows/ml_classification.ga", - "test_results": null, - "tests": true, - "title": "ml_classification", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-classification_machinelearning/versions/ml_classification", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_machinelearning/workflows/ml_classification.ga", - "wfid": "statistics-classification_machinelearning", - "wfname": "ml_classification", - "workflow": "ml_classification.ga" - } - ], - "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": 4.5, - "feedback_number": 2, - "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-05-29", - "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": 5281433, - "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": [ - "model_prediction", - "keras_train_and_eval", - "keras_model_config", - "keras_model_builder", - "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": 48, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 198, - "visitors": 1914445, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-6585-3619", - "name": "Kaivan Kamali" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Intro_To_RNN_v1_0_10_0", - "path": "topics/statistics/tutorials/RNN/workflows/Intro_To_RNN_v1_0_10_0.ga", - "test_results": null, - "tests": true, - "title": "Intro_To_RNN_v1_0_10_0", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-RNN/versions/intro_to_rnn_v1_0_10_0", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/RNN/workflows/Intro_To_RNN_v1_0_10_0.ga", - "wfid": "statistics-RNN", - "wfname": "intro_to_rnn_v1_0_10_0", - "workflow": "Intro_To_RNN_v1_0_10_0.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4477881" - }, - { - "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": 4.5, - "feedback_number": 4, - "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": 20268, - "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_build_pipeline", - "sklearn_ensemble", - "sklearn_searchcv", - "plotly_regression_performance_plots", - "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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 39, - "visitors": 12348, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Age Prediction DNA Methylation", - "path": "topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-dnam.ga", - "test_results": null, - "tests": false, - "title": "Age Prediction DNA Methylation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-age-prediction-with-ml/versions/age-prediction-dnam", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-dnam.ga", - "wfid": "statistics-age-prediction-with-ml", - "wfname": "age-prediction-dnam", - "workflow": "age-prediction-dnam.ga" - }, - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Age Prediction RNA-Seq", - "path": "topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-rna.ga", - "test_results": null, - "tests": false, - "title": "Age Prediction RNA-Seq", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-age-prediction-with-ml/versions/age-prediction-rna", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-rna.ga", - "wfid": "statistics-age-prediction-with-ml", - "wfname": "age-prediction-rna", - "workflow": "age-prediction-rna.ga" - } - ], - "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-03", - "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": 1026, - "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_targene_cell_line_predictions", - "pancancer_visualize_decisions", - "pancancer_within_disease_analysis", - "pancancer_compare_within_models", - "pancancer_targene_pharmacology", - "pancancer_alternative_genes_pathwaymapper", - "pancancer_external_sample_status_prediction", - "pancancer_classifier", - "pancancer_targene_summary_figures", - "pancancer_pathway_count_heatmaps", - "pancancer_apply_weights", - "pancancer_map_mutation_class" - ], - "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": 32, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 210, - "visitors": 622, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "papaa@0.1.9_PI3K_OG_model_tutorial", - "path": "topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "papaa@0.1.9_PI3K_OG_model_tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-aberrant_pi3k_pathway_analysis/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/workflows/main_workflow.ga", - "wfid": "statistics-aberrant_pi3k_pathway_analysis", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4306639" - }, - { - "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": 4.6, - "feedback_number": 5, - "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": 2385, - "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": [ - "model_prediction", - "keras_train_and_eval", - "keras_model_config", - "keras_model_builder", - "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": 34, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 104, - "visitors": 1828, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Intro_To_Deep_Learning", - "path": "topics/statistics/tutorials/intro_deep_learning/workflows/Intro_To_Deep_Learning.ga", - "test_results": null, - "tests": false, - "title": "Intro_To_Deep_Learning", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-intro_deep_learning/versions/intro_to_deep_learning", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/intro_deep_learning/workflows/Intro_To_Deep_Learning.ga", - "wfid": "statistics-intro_deep_learning", - "wfname": "intro_to_deep_learning", - "workflow": "Intro_To_Deep_Learning.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3706539" - }, - { - "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": 4.0, - "feedback_number": 5, - "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-05-29", - "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": 4985817, - "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": [ - "model_prediction", - "keras_train_and_eval", - "keras_model_config", - "plotly_regression_performance_plots", - "keras_model_builder" - ], - "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": 29, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 196, - "visitors": 1839835, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-6585-3619", - "name": "Kaivan Kamali" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Intro_To_FNN_v1_0_10_0", - "path": "topics/statistics/tutorials/FNN/workflows/Intro_To_FNN_v1_0_10_0.ga", - "test_results": null, - "tests": true, - "title": "Intro_To_FNN_v1_0_10_0", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-FNN/versions/intro_to_fnn_v1_0_10_0", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/FNN/workflows/Intro_To_FNN_v1_0_10_0.ga", - "wfid": "statistics-FNN", - "wfname": "intro_to_fnn_v1_0_10_0", - "workflow": "Intro_To_FNN_v1_0_10_0.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4660497" - }, - { - "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": 534, - "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": [ - "pubmed_by_queries", - "pmids_to_pubtator_matrix", - "interactive_tool_simtext_app" - ], - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 121, - "visitors": 375, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "", - "name": "" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Simtext training workflow", - "path": "topics/statistics/tutorials/text-mining_simtext/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Simtext training workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-text-mining_simtext/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/text-mining_simtext/workflows/main_workflow.ga", - "wfid": "statistics-text-mining_simtext", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.4638516" - }, - { - "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": 4.666666666666667, - "feedback_number": 3, - "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-05-29", - "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": 4999226, - "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": [ - "model_prediction", - "keras_train_and_eval", - "sklearn_to_categorical", - "keras_model_config", - "keras_model_builder", - "ml_visualization_ex" - ], - "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": 39, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 203, - "visitors": 1837582, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-6585-3619", - "name": "Kaivan Kamali" - } - ], - "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-06-24 00:06:33 +0000", - "name": "Intro_To_CNN_v1.0.11.0", - "path": "topics/statistics/tutorials/CNN/workflows/Intro_To_CNN_v1_0_11_0.ga", - "test_results": null, - "tests": true, - "title": "Intro_To_CNN_v1.0.11.0", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-CNN/versions/intro_to_cnn_v1_0_11_0", - "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/CNN/workflows/Intro_To_CNN_v1_0_11_0.ga", - "wfid": "statistics-CNN", - "wfname": "intro_to_cnn_v1_0_11_0", - "workflow": "Intro_To_CNN_v1_0_11_0.ga" - } - ], - "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-05-31", - "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": 4, - "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": null, - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 716, - "visitors": 4, - "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": 4.0, - "feedback_number": 7, - "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-05-29", - "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": 5053, - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 67, - "visitors": 3209, - "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-03", - "objectives": [ - "Learn how to encode data into high-dimensional vectors", - "Build a vector-symbolic architecture", - "Use the architecture to build a classification model" - ], - "pageviews": 361, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 34, - "visitors": 282, - "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": "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-05-31", - "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": 601, - "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": [ - "rpfba", - "rpscore", - "rpranker", - "rpthermo" - ], - "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": 11, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 194, - "visitors": 382, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Pathway Analysis", - "path": "topics/synthetic-biology/tutorials/pathway_analysis/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Pathway Analysis", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/synthetic-biology-pathway_analysis/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/pathway_analysis/workflows/main_workflow.ga", - "wfid": "synthetic-biology-pathway_analysis", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/6628296" - }, - { - "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": 2.0, - "feedback_number": 2, - "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-05-31", - "objectives": [ - "Define what data are required to run RetroSynthesis analysis.", - "Understanding how to run the tools to search heterologous pathways." - ], - "pageviews": 480, - "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": [ - "rrparser", - "rpcompletion", - "rp2paths", - "retropath2", - "get_sbml_model", - "rpextractsink" - ], - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 149, - "visitors": 324, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "RetroSynthesis", - "path": "topics/synthetic-biology/tutorials/retrosynthesis_analysis/workflows/RetroSynthesis.ga", - "test_results": null, - "tests": false, - "title": "RetroSynthesis", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/synthetic-biology-retrosynthesis_analysis/versions/retrosynthesis", - "url": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/retrosynthesis_analysis/workflows/RetroSynthesis.ga", - "wfid": "synthetic-biology-retrosynthesis_analysis", - "wfname": "retrosynthesis", - "workflow": "RetroSynthesis.ga" - } - ], - "zenodo_link": "" - }, - { - "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-05-31", - "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": 1087, - "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", - "selenzy-wrapper", - "rpbasicdesign" - ], - "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": 20, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 148, - "visitors": 663, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:33 +0000", - "name": "Genetic Design (BASIC Assembly)", - "path": "topics/synthetic-biology/tutorials/basic_assembly_analysis/workflows/Genetic_Design_BASIC_Assembly.ga", - "test_results": null, - "tests": false, - "title": "Genetic Design (BASIC Assembly)", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/synthetic-biology-basic_assembly_analysis/versions/genetic_design_basic_assembly", - "url": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/basic_assembly_analysis/workflows/Genetic_Design_BASIC_Assembly.ga", - "wfid": "synthetic-biology-basic_assembly_analysis", - "wfname": "genetic_design_basic_assembly", - "workflow": "Genetic_Design_BASIC_Assembly.ga" - } - ], - "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/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-06-11", - "pageviews": 2473923, - "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": 1037373 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-19", - "pageviews": 5533207, - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-03", - "objectives": [ - "List factors of motivation and demotivation", - "Identify what instructors can do to motivate and avoid demotivating learners" - ], - "pageviews": 1509, - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 40, - "visitors": 1275 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-03", - "objectives": [ - "Interact with the UseGalaxy.eu admins to arrange for infrastructure", - "Run a great training!" - ], - "pageviews": 101, - "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": 91 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 34, - "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": 3, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 54, - "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/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": 298, - "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": 3, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 151, - "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/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": "2023-10-23", - "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": 9, - "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/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/", - "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-03", - "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": 50, - "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": 7, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 0, - "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/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": 382, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 196, - "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/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-01", - "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": 3, - "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/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-01", - "objectives": [ - "Identify if it is appropriate" - ], - "pageviews": 39, - "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": 2, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 0, - "visitors": 32 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 1, - "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-03", - "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": 977, - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 42, - "visitors": 823 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 3.0, - "feedback_number": 2, - "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-03", - "objectives": null, - "pageviews": 170, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 29, - "visitors": 53 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 1, - "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-03", - "objectives": null, - "pageviews": 126, - "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": 5, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 51, - "visitors": 113 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 7, - "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": [] - }, - "admin_install_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": 4.666666666666667, - "feedback_number": 3, - "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-03", - "objectives": [ - "Use ephemeris to install the training requirements to a Galaxy instance", - "Create a docker image for a training topic" - ], - "pageviews": 237, - "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": 6, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 184, - "visitors": 210 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 1516, - "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": 28, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 46, - "visitors": 1268 - }, - { - "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 functional annotation", - "Gene-set enrichment analysis", - "Gene set testing" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.545454545454546, - "feedback_number": 11, - "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-03", - "objectives": [ - "Identification of differentially expressed pathways" - ], - "pageviews": 35953, - "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": [ - "Add_a_column1", - "Cut1", - "egsea", - "tp_sort_header_tool", - "fgsea", - "tp_cut_tool", - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 112, - "visitors": 21444, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "RNA Seq Genes To Pathways (imported from uploaded file)", - "path": "topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/workflows/rna-seq-genes-to-pathways.ga", - "test_results": null, - "tests": false, - "title": "RNA Seq Genes To Pathways (imported from uploaded file)", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/workflows/rna-seq-genes-to-pathways.ga", - "wfid": "transcriptomics-rna-seq-genes-to-pathways", - "wfname": "rna-seq-genes-to-pathways", - "workflow": "rna-seq-genes-to-pathways.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/2596382" - }, - { - "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-03", - "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": 1130, - "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": [ - "tp_sort_header_tool", - "samtools_sort", - "blockbuster", - "blockclust" - ], - "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": 18, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 177, - "visitors": 803, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Blockclust 1.1.0 Clustering", - "path": "topics/transcriptomics/tutorials/small_ncrna_clustering/workflows/blockclust_clustering.ga", - "test_results": null, - "tests": true, - "title": "Blockclust 1.1.0 Clustering", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-small_ncrna_clustering/versions/blockclust_clustering", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/small_ncrna_clustering/workflows/blockclust_clustering.ga", - "wfid": "transcriptomics-small_ncrna_clustering", - "wfname": "blockclust_clustering", - "workflow": "blockclust_clustering.ga" - } - ], - "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", - "MISSISSIPPI", - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.fr", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.538461538461538, - "feedback_number": 52, - "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-05-29", - "objectives": [ - "Create a volcano plot of RNA-seq data to visualize significant genes" - ], - "pageviews": 220968, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 82, - "visitors": 127744, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Visualization Of RNA-Seq Results With Volcano Plot", - "path": "topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/workflows/rna-seq-viz-with-volcanoplot.ga", - "test_results": null, - "tests": true, - "title": "Visualization Of RNA-Seq Results With Volcano Plot", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/workflows/rna-seq-viz-with-volcanoplot.ga", - "wfid": "transcriptomics-rna-seq-viz-with-volcanoplot", - "wfname": "rna-seq-viz-with-volcanoplot", - "workflow": "rna-seq-viz-with-volcanoplot.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/2529117" - }, - { - "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": [ - "Sequence composition calculation", - "RNA-Seq analysis", - "Differential gene expression analysis", - "Sequence alignment", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "RNA-Seq quantification", - "Statistical calculation", - "Gene expression analysis", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.0, - "feedback_number": 5, - "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-03", - "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": 10759, - "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": [ - "fastq_manipulation", - "salmon", - "trim_galore", - "bedtools_bamtofastq", - "deseq2", - "samtool_filter2", - "fastqc", - "Filter1", - "hisat2" - ], - "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": 38, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 131, - "visitors": 5774, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "sRNA Seq Step 1: Read Pre Processing And Removal Of Artifacts (no Grooming)", - "path": "topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_1_Read_preprocessing_and_removal_of_artifacts.ga", - "test_results": null, - "tests": false, - "title": "sRNA Seq Step 1: Read Pre Processing And Removal Of Artifacts (no Grooming)", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_1_Read_preprocessing_and_removal_of_artifacts.ga", - "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" - }, - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "sRNA Seq Step 2: Salmon And DESeq2", - "path": "topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_2_Salmon_and_DESeq2.ga", - "test_results": null, - "tests": false, - "title": "sRNA Seq Step 2: Salmon And DESeq2", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-srna/versions/srna_seq_step_2_salmon_and_deseq2", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_2_Salmon_and_DESeq2.ga", - "wfid": "transcriptomics-srna", - "wfname": "srna_seq_step_2_salmon_and_deseq2", - "workflow": "sRNA_seq_Step_2_Salmon_and_DESeq2.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/826906" - }, - { - "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": [ - "Sequence composition calculation", - "Read pre-processing", - "Statistical calculation", - "Sequence alignment", - "Sequencing quality control", - "Primer removal", - "Mapping", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 3.0, - "feedback_number": 2, - "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-03", - "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": 14471, - "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": [ - "bedtools_genomecoveragebed_bedgraph", - "__MERGE_COLLECTION__", - "sort1", - "rna_star", - "fastqc", - "__SORTLIST__", - "rcas", - "deeptools_multi_bam_summary", - "bedtools_slopbed", - "wig_to_bigWig", - "umi_tools_dedup", - "umi_tools_extract", - "meme_chip", - "Extract genomic DNA 1", - "bctools_extract_alignment_ends", - "deeptools_plot_fingerprint", - "deeptools_plot_correlation", - "cutadapt", - "tp_awk_tool", - "peakachu" - ], - "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": 49, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 118, - "visitors": 6794, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Tutorial CLIPseq Explorer Demultiplexed PEAKachu eCLIP Hg38 ", - "path": "topics/transcriptomics/tutorials/clipseq/workflows/init_workflow.ga", - "test_results": null, - "tests": false, - "title": "Tutorial CLIPseq Explorer Demultiplexed PEAKachu eCLIP Hg38 ", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-clipseq/versions/init_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/clipseq/workflows/init_workflow.ga", - "wfid": "transcriptomics-clipseq", - "wfname": "init_workflow", - "workflow": "init_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/1327423" - }, - { - "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": [ - "Sequence composition calculation", - "Statistical calculation", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.no", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 5.0, - "feedback_number": 1, - "hands_on": true, - "id": "transcriptomics/rna-interactome", - "inexact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu" - ], - "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-03", - "objectives": [ - "Quality control and data preparation", - "Mapping chimeric reads", - "Quantification of the mapped loci", - "Visualization and filtering of results" - ], - "pageviews": 1839, - "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": [ - "query_tabular", - "chira_extract", - "chira_quantify", - "cutadapt", - "chira_merge", - "chira_collapse", - "chira_map", - "fastqc" - ], - "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 - } - ] - }, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 186, - "visitors": 1135, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "RNA-RNA interactome data analysis - chira v1.4.3", - "path": "topics/transcriptomics/tutorials/rna-interactome/workflows/rna-rna-interactome-data-analysis-chira.ga", - "test_results": null, - "tests": true, - "title": "RNA-RNA interactome data analysis - chira v1.4.3", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-interactome/versions/rna-rna-interactome-data-analysis-chira", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-interactome/workflows/rna-rna-interactome-data-analysis-chira.ga", - "wfid": "transcriptomics-rna-interactome", - "wfname": "rna-rna-interactome-data-analysis-chira", - "workflow": "rna-rna-interactome-data-analysis-chira.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3709188" - }, - { - "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": [ - "Sequence composition calculation", - "Sequence alignment", - "Read summarisation", - "Validation", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "RNA-Seq quantification", - "Formatting", - "Statistical calculation", - "Data handling", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.838709677419355, - "feedback_number": 31, - "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": [ - "MISSISSIPPI", - "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-02-13", - "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": 122613, - "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": [ - "featurecounts", - "picard_MarkDuplicates", - "cutadapt", - "samtools_idxstats", - "rseqc_read_distribution", - "multiqc", - "collection_column_join", - "fastqc", - "rseqc_geneBody_coverage", - "rseqc_infer_experiment", - "hisat2" - ], - "slides": false, - "slides_recordings": false, - "subtopic": "end-to-end", - "supported_servers": { - "exact": [ - { - "name": "UseGalaxy.eu", - "url": "https://usegalaxy.eu", - "usegalaxy": true - } - ], - "inexact": [ - { - "name": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": [ - "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": 61, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 149, - "visitors": 64027, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "QC report", - "path": "topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/qc_report.ga", - "test_results": null, - "tests": false, - "title": "QC report", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-seq-reads-to-counts/versions/qc_report", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/qc_report.ga", - "wfid": "transcriptomics-rna-seq-reads-to-counts", - "wfname": "qc_report", - "workflow": "qc_report.ga" - }, - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "RNA Seq Reads To Counts", - "path": "topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/rna-seq-reads-to-counts.ga", - "test_results": null, - "tests": false, - "title": "RNA Seq Reads To Counts", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/rna-seq-reads-to-counts.ga", - "wfid": "transcriptomics-rna-seq-reads-to-counts", - "wfname": "rna-seq-reads-to-counts", - "workflow": "rna-seq-reads-to-counts.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4249555" - }, - { - "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": [ - "Pathway or network analysis", - "RNA-Seq analysis", - "Differential gene expression analysis" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.25, - "feedback_number": 4, - "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-11", - "objectives": [ - "Network Analysis of metatranscriptomics data using Heinz in Galaxy to pinpoint the optimal scoring subnetwork." - ], - "pageviews": 5536002, - "pub_date": "2018-10-11", - "questions": [ - "Which pathways are potentially contributing to dental caries?" - ], - "short_id": "T00293", - "short_tools": [ - "Cut1", - "heinz_visualization", - "heinz_scoring", - "deseq2", - "heinz", - "heinz_bum" - ], - "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": 23, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 344, - "visitors": 1985935, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Workflow Constructed From History 'Heinz Workflow Trial Sep 11'", - "path": "topics/transcriptomics/tutorials/network-analysis-with-heinz/workflows/Galaxy-Workflow-Heinz.ga", - "test_results": null, - "tests": false, - "title": "Workflow Constructed From History 'Heinz Workflow Trial Sep 11'", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-network-analysis-with-heinz/versions/galaxy-workflow-heinz", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/network-analysis-with-heinz/workflows/Galaxy-Workflow-Heinz.ga", - "wfid": "transcriptomics-network-analysis-with-heinz", - "wfname": "galaxy-workflow-heinz", - "workflow": "Galaxy-Workflow-Heinz.ga" - } - ], - "zenodo_link": "https://doi.org/10.5281/zenodo.1344105" - }, - { - "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": [ - "De-novo assembly", - "Sequence composition calculation", - "Gene functional annotation", - "Validation", - "Coding region prediction", - "Sequencing quality control", - "de Novo sequencing", - "Statistical calculation", - "Transcriptome assembly" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 3.6666666666666665, - "feedback_number": 6, - "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-03", - "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": 20746, - "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": [ - "transdecoder", - "trinity_define_clusters_by_cutting_tree", - "trimmomatic", - "describe_samples", - "trinity_abundance_estimates_to_matrix", - "trinity_filter_low_expr_transcripts", - "trinotate", - "trinity_run_de_analysis", - "multiqc", - "trinity_align_and_estimate_abundance", - "trinity", - "trinity_samples_qccheck", - "fastqc", - "trinity_contig_exn50_statistic", - "trinity_analyze_diff_expr" - ], - "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": 31, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 10430, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "trinity NG", - "path": "topics/transcriptomics/tutorials/full-de-novo/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "trinity NG", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-full-de-novo/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/full-de-novo/workflows/main_workflow.ga", - "wfid": "transcriptomics-full-de-novo", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/3541678" - }, - { - "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": 4.9411764705882355, - "feedback_number": 17, - "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-03", - "objectives": [ - "Create heatmaps of RNA-seq data" - ], - "pageviews": 114116, - "pub_date": "2018-12-31", - "questions": [ - "How to generate heatmaps from RNA-seq data?" - ], - "short_id": "T00303", - "short_tools": [ - "ggplot2_heatmap2", - "join1", - "Cut1", - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 83, - "visitors": 65861, - "workflows": [ - { - "creators": [], - "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 042876c2-0a7b-4df8-b8e6-c05df09ee2d0[\"Output\\nheatmap_pdf\"];\n 5 --> 042876c2-0a7b-4df8-b8e6-c05df09ee2d0;\n style 042876c2-0a7b-4df8-b8e6-c05df09ee2d0 stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:34 +0000", - "name": "Heatmap2 Workflow", - "path": "topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/workflows/rna-seq-viz-with-heatmap2.ga", - "test_results": null, - "tests": true, - "title": "Heatmap2 Workflow", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/workflows/rna-seq-viz-with-heatmap2.ga", - "wfid": "transcriptomics-rna-seq-viz-with-heatmap2", - "wfname": "rna-seq-viz-with-heatmap2", - "workflow": "rna-seq-viz-with-heatmap2.ga" - } - ], - "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": 3.7777777777777777, - "feedback_number": 9, - "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": 33244, - "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": [ - "goslimmer", - "Filter1", - "goenrichment" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 76, - "visitors": 19588, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "GO Enrichment Workflow", - "path": "topics/transcriptomics/tutorials/goenrichment/workflows/goenrichment-workflow.ga", - "test_results": null, - "tests": false, - "title": "GO Enrichment Workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-goenrichment/versions/goenrichment-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/goenrichment/workflows/goenrichment-workflow.ga", - "wfid": "transcriptomics-goenrichment", - "wfname": "goenrichment-workflow", - "workflow": "goenrichment-workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/2565417" - }, - { - "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": [ - "Sequence composition calculation", - "RNA-Seq analysis", - "Differential gene expression analysis", - "Validation", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "RNA-Seq quantification", - "Statistical calculation", - "Gene expression analysis", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.0, - "feedback_number": 4, - "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-05-31", - "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": 5025776, - "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": [ - "rbc_mirdeep2_mapper", - "Cut1", - "salmon", - "trim_galore", - "filter_by_fasta_ids", - "deseq2", - "cat1", - "multiqc", - "sample_seqs", - "sort1", - "__MERGE_COLLECTION__", - "rbc_mirdeep2_quantifier", - "fastqc", - "targetfinder", - "Filter1" - ], - "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": 91, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 312, - "visitors": 1839408, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Plant bulk RNA-Seq workflow", - "path": "topics/transcriptomics/tutorials/mirna-target-finder/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Plant bulk RNA-Seq workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-mirna-target-finder/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/mirna-target-finder/workflows/main_workflow.ga", - "wfid": "transcriptomics-mirna-target-finder", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": [ - "Annotation", - "RNA-Seq analysis" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.785714285714286, - "feedback_number": 14, - "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": 63012, - "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": [ - "annotatemyids", - "tp_replace_in_line", - "mergeCols1", - "limma_voom", - "tp_cut_tool" - ], - "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": 38, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 136, - "visitors": 35291, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "RNA Seq Counts To Genes", - "path": "topics/transcriptomics/tutorials/rna-seq-counts-to-genes/workflows/rna-seq-counts-to-genes.ga", - "test_results": null, - "tests": false, - "title": "RNA Seq Counts To Genes", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-counts-to-genes/workflows/rna-seq-counts-to-genes.ga", - "wfid": "transcriptomics-rna-seq-counts-to-genes", - "wfname": "rna-seq-counts-to-genes", - "workflow": "rna-seq-counts-to-genes.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4273218" - }, - { - "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": [ - "De-novo assembly", - "Sequence composition calculation", - "RNA-Seq analysis", - "Sequence alignment", - "Sequence comparison", - "Sequence annotation", - "Validation", - "Sequencing quality control", - "Visualisation", - "Protein sequence analysis", - "Sequence assembly validation", - "Formatting", - "Statistical calculation", - "Data handling", - "Sequence analysis", - "Transcriptome assembly", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 5.0, - "feedback_number": 2, - "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": 1434613, - "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": [ - "gtftobed12", - "Cut1", - "isoformswitchanalyzer", - "pfamscan", - "cat1", - "__FILTER_FROM_FILE__", - "rseqc_junction_saturation", - "fastp", - "rna_quast", - "tp_sorted_uniq", - "collection_element_identifiers", - "rseqc_inner_distance", - "gene2exon1", - "cpat", - "gffcompare", - "rseqc_read_distribution", - "sort1", - "rna_star", - "fastqc", - "rseqc_geneBody_coverage", - "stringtie_merge", - "__FLATTEN__", - "Remove beginning1", - "gffread", - "stringtie", - "multiqc", - "param_value_from_file", - "pygenomeTracks", - "rseqc_junction_annotation", - "tab2fasta", - "tp_cat", - "tp_awk_tool", - "CONVERTER_fasta_to_tabular", - "rseqc_infer_experiment", - "tp_grep_tool", - "hisat2" - ], - "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": 124, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 271, - "visitors": 623957, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-5752-2155", - "name": "Crist\u00f3bal Gallardo Alba" - } - ], - "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-06-24 00:06:34 +0000", - "name": "Genome-wide alternative splicing analysis: human", - "path": "topics/transcriptomics/tutorials/differential-isoform-expression/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Genome-wide alternative splicing analysis: human", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-differential-isoform-expression/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/differential-isoform-expression/workflows/main_workflow.ga", - "wfid": "transcriptomics-differential-isoform-expression", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/7974884" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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-05-29", - "pageviews": 5533209, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 5.0, - "feedback_number": 1, - "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-03", - "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": 5534270, - "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": 17, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 398, - "visitors": 1984981, - "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/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": 1.0, - "feedback_number": 2, - "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-03", - "objectives": [ - "Manage RNA-Seq results", - "Extract genes for producing differential gene expression analysis visualizations", - "Visualize meaningful information" - ], - "pageviews": 5536588, - "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": 39, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 265, - "visitors": 1986305, - "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": 4.583333333333333, - "feedback_number": 12, - "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-05-29", - "objectives": [ - "Describe the role of data, aesthetics, geoms, and layers in `ggplot` functions.", - "Customize plot scales, titles, subtitles, themes, fonts, layout, and orientation." - ], - "pageviews": 4656, - "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": 46, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 112, - "visitors": 3560, - "zenodo_link": "https://zenodo.org/record/3477564/" - }, - { - "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": 3.0, - "feedback_number": 4, - "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-05-29", - "objectives": [ - "Learn how to use R to edit Volcano plot colours, points, labels and categories" - ], - "pageviews": 38665, - "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": [ - "volcanoplot", - "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": "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": 14, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 103, - "visitors": 27880, - "zenodo_link": "https://zenodo.org/record/2529117" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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/", - "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-03", - "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": 6643, - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 86, - "visitors": 5391, - "zenodo_link": "https://zenodo.org/record/6457007" - }, - { - "admin_install": { - "install_repository_dependencies": true, - "install_resolver_dependencies": true, - "install_tool_dependencies": true, - "tools": [] - }, - "admin_install_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": 3.75, - "feedback_number": 4, - "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": 31844, - "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": 21, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 131, - "visitors": 20036, - "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": "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": "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": "f9242e01365a", - "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": "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": "8fe98f7094de", - "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": "ggplot2_heatmap2", - "owner": "iuc", - "revisions": "53460afd5115", - "tool_panel_section_label": "Graph/Display Data", - "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/" - }, - { - "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": "rgrnastar", - "owner": "iuc", - "revisions": "3ea5a2a63fa2", - "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": "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": "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": "dbedfc5f5a3c", - "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/" - } - ] - }, - "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: 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: 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: 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_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: 8fe98f7094de\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: ggplot2_heatmap2\n owner: iuc\n revisions: 53460afd5115\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: ef2ad746b589\n tool_panel_section_label: Annotation\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: 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: 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: 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: 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: 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: 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/ref-based/tutorial.json", - "contributions": { - "authorship": [ - "bebatut", - "malloryfreeberg", - "moheydarian", - "erxleben", - "pavanvidem", - "blankclemens", - "mblue9", - "nsoranzo", - "pvanheus", - "lldelisle" - ], - "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" - }, - { - "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" - } - ], - "dir": "topics/transcriptomics/tutorials/ref-based", - "edam_operation": [ - "Exonic splicing enhancer prediction", - "Enrichment analysis", - "Sequence composition calculation", - "Pathway or network visualisation", - "Gene functional annotation", - "Validation", - "Visualisation", - "Primer removal", - "Statistical calculation", - "Data handling", - "Pathway or network analysis", - "RNA-Seq analysis", - "Differential gene expression analysis", - "Read summarisation", - "Sequencing quality control", - "Read pre-processing", - "RNA-Seq quantification", - "Formatting", - "Sequence alignment", - "Sequence trimming" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.fr", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.542857142857143, - "feedback_number": 105, - "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" - ], - "js_requirements": { - "mathjax": 81051, - "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-06-11", - "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": 275665, - "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": [ - "__TAG_FROM_FILE__", - "gtftobed12", - "Cut1", - "tp_replace_in_line", - "picard_MarkDuplicates", - "Grouping1", - "cat1", - "__MERGE_COLLECTION__", - "collection_element_identifiers", - "Add_a_column1", - "featurecounts", - "pathview", - "table_compute", - "rseqc_infer_experiment", - "deseq2", - "rseqc_read_distribution", - "ChangeCase", - "rna_star", - "__EXTRACT_DATASET__", - "fastqc", - "deg_annotate", - "length_and_gc_content", - "samtools_view", - "rseqc_geneBody_coverage", - "__FLATTEN__", - "samtools_idxstats", - "multiqc", - "join1", - "Filter1", - "pygenomeTracks", - "tp_tail_tool", - "ggplot2_heatmap2", - "cutadapt", - "tp_cat", - "tp_sort_header_tool", - "dexseq_count", - "dexseq", - "goseq" - ], - "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 - }, - { - "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": [ - "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/0.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_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/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/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.7+galaxy2", - "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/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3+galaxy0", - "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.44.0+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/rgrnastar/rna_star/2.7.10b+galaxy3", - "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", - "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/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", - "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/2.6.4.1", - "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" - ], - "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": 267, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 179, - "visitors": 132910, - "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" - } - ], - "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 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 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 19[\"goseq\"];\n 16 -->|out_file1| 19;\n 7 -->|out_file1| 19;\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 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 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-06-24 00:06:34 +0000", - "name": "DEG Part - Ref Based RNA Seq - Transcriptomics - GTN", - "path": "topics/transcriptomics/tutorials/ref-based/workflows/deg-analysis.ga", - "test_results": null, - "tests": true, - "title": "DEG Part - Ref Based RNA Seq - Transcriptomics - GTN", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-ref-based/versions/deg-analysis", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/deg-analysis.ga", - "wfid": "transcriptomics-ref-based", - "wfname": "deg-analysis", - "workflow": "deg-analysis.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:34 +0000", - "name": "QC + Mapping + Counting (single+paired) - Ref Based RNA Seq - Transcriptomics - GTN", - "path": "topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting-paired-and-single.ga", - "test_results": null, - "tests": true, - "title": "QC + Mapping + Counting (single+paired) - Ref Based RNA Seq - Transcriptomics - GTN", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-ref-based/versions/qc-mapping-counting-paired-and-single", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting-paired-and-single.ga", - "wfid": "transcriptomics-ref-based", - "wfname": "qc-mapping-counting-paired-and-single", - "workflow": "qc-mapping-counting-paired-and-single.ga" - }, - { - "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" - } - ], - "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 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 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 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 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 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 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 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 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 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 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 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 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 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;\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 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 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;", - "modified": "2024-06-24 00:06:34 +0000", - "name": "QC + Mapping + Counting - Ref Based RNA Seq - Transcriptomics - GTN - subworkflows", - "path": "topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting.ga", - "test_results": null, - "tests": true, - "title": "QC + Mapping + Counting - Ref Based RNA Seq - Transcriptomics - GTN - subworkflows", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-ref-based/versions/qc-mapping-counting", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting.ga", - "wfid": "transcriptomics-ref-based", - "wfname": "qc-mapping-counting", - "workflow": "qc-mapping-counting.ga" - } - ], - "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": [ - "RNA-Seq analysis", - "Sequence composition calculation", - "Sequence alignment", - "Gene functional annotation", - "Read summarisation", - "Validation", - "Sequencing quality control", - "Primer removal", - "Read pre-processing", - "Annotation", - "RNA-Seq quantification", - "Statistical calculation", - "Data handling", - "Sequence trimming" - ], - "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": 3657 - }, - "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-06-11", - "objectives": [ - "Perform an analysis using a workflow from WorkflowHub", - "Visualise and interpret the results with MINERVA" - ], - "pageviews": 110, - "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": [ - "tp_replace_in_line", - "Cut1", - "fasterq_dump", - "limma_voom", - "Grep1", - "tp_sorted_uniq", - "Add_a_column1", - "featurecounts", - "rseqc_read_distribution", - "__EXTRACT_DATASET__", - "fastqc", - "rseqc_geneBody_coverage", - "annotatemyids", - "multiqc", - "collection_column_join", - "join1", - "cutadapt", - "tp_sort_header_tool", - "goseq", - "hisat2" - ], - "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": 15, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 47, - "visitors": 93, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-9760-8992", - "name": "Helena Rasche" - } - ], - "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-06-24 00:06:34 +0000", - "name": "BY-COVID: Data Download", - "path": "topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-BY-COVID__Data_Download.ga", - "test_results": null, - "tests": true, - "title": "BY-COVID: Data Download", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-minerva-pathways/versions/galaxy-workflow-by-covid__data_download", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-BY-COVID__Data_Download.ga", - "wfid": "transcriptomics-minerva-pathways", - "wfname": "galaxy-workflow-by-covid__data_download", - "workflow": "Galaxy-Workflow-BY-COVID__Data_Download.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:34 +0000", - "name": "mRNA-Seq BY-COVID Pipeline: Analysis", - "path": "topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Analysis.ga", - "test_results": null, - "tests": true, - "title": "mRNA-Seq BY-COVID Pipeline: Analysis", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Analysis.ga", - "wfid": "transcriptomics-minerva-pathways", - "wfname": "galaxy-workflow-mrna-seq_by-covid_pipeline__analysis", - "workflow": "Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Analysis.ga" - }, - { - "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" - } - ], - "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-06-24 00:06:34 +0000", - "name": "mRNA-Seq BY-COVID Pipeline: Counts", - "path": "topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Counts.ga", - "test_results": null, - "tests": true, - "title": "mRNA-Seq BY-COVID Pipeline: Counts", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Counts.ga", - "wfid": "transcriptomics-minerva-pathways", - "wfname": "galaxy-workflow-mrna-seq_by-covid_pipeline__counts", - "workflow": "Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Counts.ga" - } - ], - "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": [ - "RNA-Seq analysis", - "Sequence composition calculation", - "Differential gene expression analysis", - "Sequence annotation", - "Read summarisation", - "Sequencing quality control", - "RNA-Seq quantification", - "Statistical calculation", - "Sequence alignment", - "Transcriptome assembly" - ], - "edam_topic": [], - "exact_supported_servers": [ - "Galaxy@AuBi", - "UseGalaxy.fr", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.666666666666667, - "feedback_number": 12, - "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-05-29", - "objectives": [ - "Analysis of RNA sequencing data using a reference genome", - "Reconstruction of transcripts without reference transcriptome (de novo)", - "Analysis of differentially expressed genes" - ], - "pageviews": 22940, - "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": [ - "featurecounts", - "trimmomatic", - "gffcompare", - "stringtie", - "deseq2", - "deeptools_bam_coverage", - "fastqc", - "stringtie_merge", - "Filter1", - "hisat2" - ], - "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": 60, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 150, - "visitors": 12645, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "De novo transcriptome reconstruction with RNA-Seq", - "path": "topics/transcriptomics/tutorials/de-novo/workflows/transcriptomics-denovo-workflow.ga", - "test_results": null, - "tests": false, - "title": "De novo transcriptome reconstruction with RNA-Seq", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-de-novo/versions/transcriptomics-denovo-workflow", - "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/de-novo/workflows/transcriptomics-denovo-workflow.ga", - "wfid": "transcriptomics-de-novo", - "wfname": "transcriptomics-denovo-workflow", - "workflow": "transcriptomics-denovo-workflow.ga" - } - ], - "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": 5533210, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "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": [ - "Sequence composition calculation", - "Sequence alignment analysis", - "Generation", - "Sequence alignment", - "Variant calling", - "Genome indexing", - "Sequencing quality control", - "Formatting", - "Read mapping", - "Statistical calculation", - "Data handling" - ], - "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": 2.3333333333333335, - "feedback_number": 3, - "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-14", - "objectives": [ - "Using Galaxy's main site we will see how to call variants in bacteria, viruses, and organelles." - ], - "pageviews": 13178, - "pub_date": "2017-02-16", - "questions": [ - "How does frequency of mitochondrial polymorphisms change from mother to child?" - ], - "short_id": "T00314", - "short_tools": [ - "picard_MergeSamFiles", - "fastqc", - "Cut1", - "picard_MarkDuplicates", - "freebayes", - "vcf2tsv", - "bamFilter", - "bwa_mem", - "bamleftalign", - "vcffilter2" - ], - "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": 39, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 123, - "visitors": 6849, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Calling variants in non-diploid systems", - "path": "topics/variant-analysis/tutorials/non-dip/workflows/Calling_variants_in_non-diploid_systems.ga", - "test_results": null, - "tests": true, - "title": "Calling variants in non-diploid systems", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-non-dip/versions/calling_variants_in_non-diploid_systems", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/non-dip/workflows/Calling_variants_in_non-diploid_systems.ga", - "wfid": "variant-analysis-non-dip", - "wfname": "calling_variants_in_non-diploid_systems", - "workflow": "Calling_variants_in_non-diploid_systems.ga" - } - ], - "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", - "Read mapping", - "Variant calling", - "Statistical calculation", - "Genome indexing", - "Sequence alignment" - ], - "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-03", - "objectives": [ - "Processing raw duplex sequencing data into consensus sequences", - "Find rare variants without relying on diploid assumptions" - ], - "pageviews": 2398, - "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": [ - "correct_barcodes", - "make_families", - "sequence_content_trimmer", - "dunovo", - "align_families", - "naive_variant_caller", - "bwa_mem", - "allele_counts_1", - "bamleftalign", - "Filter1" - ], - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 101, - "visitors": 1449, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Du Novo GTN Tutorial - Make Consensus Sequences", - "path": "topics/variant-analysis/tutorials/dunovo/workflows/dunovo.ga", - "test_results": null, - "tests": false, - "title": "Du Novo GTN Tutorial - Make Consensus Sequences", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-dunovo/versions/dunovo", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dunovo/workflows/dunovo.ga", - "wfid": "variant-analysis-dunovo", - "wfname": "dunovo", - "workflow": "dunovo.ga" - }, - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Du Novo GTN Tutorial - Variant Calling", - "path": "topics/variant-analysis/tutorials/dunovo/workflows/variant-calling.ga", - "test_results": null, - "tests": false, - "title": "Du Novo GTN Tutorial - Variant Calling", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-dunovo/versions/variant-calling", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dunovo/workflows/variant-calling.ga", - "wfid": "variant-analysis-dunovo", - "wfname": "variant-calling", - "workflow": "variant-calling.ga" - } - ], - "zenodo_link": "" - }, - { - "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": [ - "Methylation analysis", - "Tree-based sequence alignment", - "Variant classification", - "Variant calling" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.5, - "feedback_number": 10, - "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-05-29", - "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": 11718, - "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": [ - "pangolin", - "fasta_regex_finder", - "upload1", - "nextclade", - "datamash_ops", - "Filter1" - ], - "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": 35, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 207, - "visitors": 6254, - "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": 4.5, - "feedback_number": 2, - "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-03", - "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": 5339, - "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": [ - "snpEff_download", - "mimodd_map", - "mimodd_varcall", - "tp_find_and_replace", - "mimodd_varextract", - "mimodd_varreport", - "mimodd_vcf_filter", - "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": 25, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 178, - "visitors": 3457, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Mapping And Molecular Identification Of Phenotype Causing Mutations", - "path": "topics/variant-analysis/tutorials/mapping-by-sequencing/workflows/workflow-arabidopsis.ga", - "test_results": null, - "tests": false, - "title": "Mapping And Molecular Identification Of Phenotype Causing Mutations", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-mapping-by-sequencing/versions/workflow-arabidopsis", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/mapping-by-sequencing/workflows/workflow-arabidopsis.ga", - "wfid": "variant-analysis-mapping-by-sequencing", - "wfname": "workflow-arabidopsis", - "workflow": "workflow-arabidopsis.ga" - } - ], - "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": "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": "147de996e34f", - "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: 147de996e34f\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": [ - "Local alignment", - "Sequence composition calculation", - "Sequence alignment analysis", - "Global alignment", - "Variant calling", - "Validation", - "Sequencing quality control", - "Phylogenetic tree generation", - "Antimicrobial resistance prediction", - "Taxonomic classification", - "Genome visualisation", - "Statistical calculation", - "Sequence alignment", - "Sequence analysis", - "Phylogenetic tree visualisation", - "Sequence contamination filtering" - ], - "edam_topic": [ - "Genomics", - "Microbiology", - "Sequence assembly", - "Genetic variation", - "Public health and epidemiology", - "Infectious disease" - ], - "exact_supported_servers": [], - "feedback_mean_note": 4.64, - "feedback_number": 25, - "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-06-12", - "objectives": [ - "How should we filter those variants", - "How can we predict drug resistance from those variants", - "How do we annotate those variants" - ], - "pageviews": 8587, - "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": [ - "tb_variant_filter", - "bcftools_consensus", - "jvarkit_wgscoverageplotter", - "fastp", - "jbrowse", - "snippy", - "kraken2", - "EMBOSS:%20seqret84", - "qualimap_bamqc", - "fastqc", - "tb_profiler_profile", - "EMBOSS: seqret84", - "mosdepth", - "tbvcfreport", - "__FLATTEN__", - "multiqc", - "upload1", - "tp_sed_tool", - "samtools_stats", - "tp_awk_tool" - ], - "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": 75, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 178, - "visitors": 5340, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-6553-5274", - "name": "Peter van Heusden" - } - ], - "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-06-24 00:06:34 +0000", - "name": "TB Variant Analysis v1.0", - "path": "topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.ga", - "test_results": null, - "tests": true, - "title": "TB Variant Analysis v1.0", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-tb-variant-analysis/versions/tb-variant-analysis", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.ga", - "wfid": "variant-analysis-tb-variant-analysis", - "wfname": "tb-variant-analysis", - "workflow": "tb-variant-analysis.ga" - } - ], - "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": "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": [ - "Generation", - "Sequence alignment", - "Validation", - "Genome indexing", - "Sequencing quality control", - "Formatting", - "SNP detection", - "Read mapping", - "Data handling", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.0, - "feedback_number": 5, - "hands_on": true, - "id": "variant-analysis/sars-cov-2", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-05-29", - "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": 18099, - "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": [ - "picard_MarkDuplicates", - "samtools_stats", - "snpeff_sars_cov_2", - "fasterq_dump", - "Grep1", - "multiqc", - "lofreq_indelqual", - "snpSift_extractFields", - "tp_cut_tool", - "bwa_mem", - "fastp", - "lofreq_viterbi", - "Filter1", - "lofreq_call" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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.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": 45, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 174, - "visitors": 11906, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Simple COVID-19 - PE Variation", - "path": "topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Simple COVID-19 - PE Variation", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-sars-cov-2/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", - "wfid": "variant-analysis-sars-cov-2", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ] - }, - { - "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": [ - "Local alignment", - "Sequence alignment analysis", - "Generation", - "Global alignment", - "Genome indexing", - "Sequencing quality control", - "Multiple sequence alignment", - "Read mapping", - "Sequence alignment", - "Sequence analysis", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu" - ], - "feedback_mean_note": 4.0, - "feedback_number": 1, - "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": 490, - "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": [ - "Cut1", - "rbc_mafft", - "__APPLY_RULES__", - "Grep1", - "fastp", - "Add_a_column1", - "fatovcf", - "fasta_compute_length", - "qualimap_bamqc", - "compose_text_param", - "EMBOSS: maskseq51", - "samtools_view", - "ivar_consensus", - "__ZIP_COLLECTION__", - "bwa_mem", - "param_value_from_file", - "ivar_trim", - "fasta_regex_finder", - "upload1", - "samtools_merge", - "datamash_ops", - "mimodd_info" - ], - "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": 10, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 133, - "visitors": 420, - "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" - } - ], - "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-06-24 00:06:34 +0000", - "name": "pox-virus-tiled-amplicon-ref-masking", - "path": "topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.ga", - "test_results": null, - "tests": true, - "title": "pox-virus-tiled-amplicon-ref-masking", - "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", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.ga", - "wfid": "variant-analysis-pox-tiled-amplicon", - "wfname": "pox-virus-tiled-amplicon-ref-masking", - "workflow": "pox-virus-tiled-amplicon-ref-masking.ga" - } - ] - }, - { - "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": [ - "Sequence composition calculation", - "Sequence alignment analysis", - "Generation", - "Variant calling", - "Genome indexing", - "Validation", - "Sequencing quality control", - "Data handling", - "Read mapping", - "Statistical calculation", - "Sequence alignment" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.no", - "UseGalaxy.org (Main)", - "UseGalaxy.org.au" - ], - "feedback_mean_note": 4.384615384615385, - "feedback_number": 13, - "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-03", - "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": 21051, - "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": [ - "bg_column_arrange_by_header", - "fastqc", - "samtools_rmdup", - "trimmomatic", - "multiqc", - "bwa_mem", - "samtools_calmd", - "bamFilter", - "gemini_annotate", - "gemini_load", - "tp_easyjoin_tool", - "varscan_somatic", - "bamleftalign", - "gemini_query", - "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": 19, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 10907, - "workflows": [ - { - "creators": [], - "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 c6cb2085-b47b-4284-9a5c-0b6c578e7b2d[\"Output\\ngene_report_output\"];\n 51 --> c6cb2085-b47b-4284-9a5c-0b6c578e7b2d;\n style c6cb2085-b47b-4284-9a5c-0b6c578e7b2d stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:34 +0000", - "name": "Identification of somatic and germline variants from tumor and normal sample pairs tutorial", - "path": "topics/variant-analysis/tutorials/somatic-variants/workflows/somatic_variants_tutorial_workflow.ga", - "test_results": null, - "tests": true, - "title": "Identification of somatic and germline variants from tumor and normal sample pairs tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-somatic-variants/versions/somatic_variants_tutorial_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/somatic-variants/workflows/somatic_variants_tutorial_workflow.ga", - "wfid": "variant-analysis-somatic-variants", - "wfname": "somatic_variants_tutorial_workflow", - "workflow": "somatic_variants_tutorial_workflow.ga" - } - ], - "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": "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", - "Phylogenetic tree generation", - "Phylogenetic tree visualisation", - "Variant calling" - ], - "edam_topic": [ - "Genomics", - "Sequence assembly", - "DNA polymorphism", - "Microbiology", - "Sequence analysis", - "Genetic variation" - ], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.416666666666667, - "feedback_number": 12, - "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-14", - "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": 19648, - "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": [ - "snippy", - "jbrowse" - ], - "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": 36, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 119, - "visitors": 11631, - "workflows": [ - { - "creators": [], - "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 6ed05601-0fad-4f3e-89be-96a54cd23270[\"Output\\nsnippy_fasta\"];\n 5 --> 6ed05601-0fad-4f3e-89be-96a54cd23270;\n style 6ed05601-0fad-4f3e-89be-96a54cd23270 stroke:#2c3143,stroke-width:4px;\n e4b07b54-4fcb-4f24-a16f-0e8a6028e780[\"Output\\nsnippy_tabular\"];\n 5 --> e4b07b54-4fcb-4f24-a16f-0e8a6028e780;\n style e4b07b54-4fcb-4f24-a16f-0e8a6028e780 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 a2787074-75c2-44fc-8a69-0675e87b7f34[\"Output\\njbrowse_html\"];\n 6 --> a2787074-75c2-44fc-8a69-0675e87b7f34;\n style a2787074-75c2-44fc-8a69-0675e87b7f34 stroke:#2c3143,stroke-width:4px;", - "modified": "2024-06-24 00:06:34 +0000", - "name": "Microbial Variant Calling", - "path": "topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.ga", - "test_results": null, - "tests": true, - "title": "Microbial Variant Calling", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-microbial-variants/versions/microbial_variant_calling", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.ga", - "wfid": "variant-analysis-microbial-variants", - "wfname": "microbial_variant_calling", - "workflow": "microbial_variant_calling.ga" - } - ], - "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": "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": [ - "Genetic variation analysis", - "Sequence 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" - ], - "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-05-29", - "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": 2676, - "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": [ - "bcftools_norm", - "gemini_load", - "CONVERTER_uncompressed_to_gz", - "CONVERTER_gz_to_uncompressed", - "bcftools_merge", - "gene_iobio_display_generation_iframe", - "pyega3", - "regexColumn1", - "gemini_inheritance", - "Filter1", - "tp_grep_tool", - "snpEff" - ], - "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 - } - ] - }, - "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": 45, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 250, - "visitors": 1334, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0003-2556-2125", - "name": "Jasper Ouwerkerk" - } - ], - "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-06-24 00:06:34 +0000", - "name": "Trio Analysis Tutorial", - "path": "topics/variant-analysis/tutorials/trio-analysis/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Trio Analysis Tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-trio-analysis/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/trio-analysis/workflows/main_workflow.ga", - "wfid": "variant-analysis-trio-analysis", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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": "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": [ - "Statistical calculation", - "Genetic variation analysis", - "Sequence analysis", - "Variant calling" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 3.923076923076923, - "feedback_number": 13, - "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": 21935, - "pub_date": "2017-02-20", - "questions": [ - "How to find variable sites in diploid genomes?" - ], - "short_id": "T00309", - "short_tools": [ - "snpEff_download", - "freebayes", - "gemini_db_info", - "vcfallelicprimitives", - "gemini_load", - "gemini_query", - "snpEff" - ], - "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": 24, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 194, - "visitors": 12126, - "workflows": [ - { - "creators": [], - "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-06-24 00:06:34 +0000", - "name": "Diploid", - "path": "topics/variant-analysis/tutorials/dip/workflows/diploid.ga", - "test_results": null, - "tests": false, - "title": "Diploid", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-dip/versions/diploid", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dip/workflows/diploid.ga", - "wfid": "variant-analysis-dip", - "wfname": "diploid", - "workflow": "diploid.ga" - } - ], - "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": "ebb2e12a6de1", - "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: ebb2e12a6de1\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": [ - "Sequence composition calculation", - "Generation", - "Variant calling", - "Genetic variation analysis", - "Validation", - "Genome indexing", - "Sequencing quality control", - "Read mapping", - "Statistical calculation", - "Sequence alignment", - "Sequence analysis" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.fr", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.241379310344827, - "feedback_number": 29, - "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-03", - "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": 50013, - "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": [ - "samtools_rmdup", - "fastqc", - "bcftools_norm", - "snpEff_download", - "trimmomatic", - "freebayes", - "multiqc", - "gemini_load", - "bwa_mem", - "samtools_view", - "gemini_inheritance", - "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": 41, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 170, - "visitors": 25483, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9464-6640", - "name": "Wolfgang Maier" - } - ], - "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-06-24 00:06:34 +0000", - "name": "Exome Seq Training Pre-Mapped W Cached Ref", - "path": "topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_from_premapped.ga", - "test_results": null, - "tests": true, - "title": "Exome Seq Training Pre-Mapped W Cached Ref", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-exome-seq/versions/workflow_exome_seq_from_premapped", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_from_premapped.ga", - "wfid": "variant-analysis-exome-seq", - "wfname": "workflow_exome_seq_from_premapped", - "workflow": "workflow_exome_seq_from_premapped.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0002-9464-6640", - "name": "Wolfgang Maier" - } - ], - "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-06-24 00:06:34 +0000", - "name": "Exome Seq Training Full W Cached Ref", - "path": "topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_full.ga", - "test_results": null, - "tests": true, - "title": "Exome Seq Training Full W Cached Ref", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-exome-seq/versions/workflow_exome_seq_full", - "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_full.ga", - "wfid": "variant-analysis-exome-seq", - "wfname": "workflow_exome_seq_full", - "workflow": "workflow_exome_seq_full.ga" - } - ], - "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": "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": [ - "Sequence composition calculation", - "Genome alignment", - "Generation", - "Sequence alignment", - "Variant calling", - "Validation", - "Genome indexing", - "Sequencing quality control", - "Copy number estimation", - "Read mapping", - "Statistical calculation", - "Sequence visualisation" - ], - "edam_topic": [], - "exact_supported_servers": [], - "feedback_mean_note": 3.0, - "feedback_number": 1, - "hands_on": true, - "id": "variant-analysis/somatic-variant-discovery", - "inexact_supported_servers": [ - "UseGalaxy.cz", - "UseGalaxy.eu", - "UseGalaxy.no" - ], - "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-14", - "objectives": [ - "Use Control-Freec for hCNV Identefication in tumor tissue.", - "Visualise the detected hCNVs in specific chromosomes." - ], - "pageviews": 1319, - "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": [ - "samtools_rmdup", - "fastqc", - "tp_replace_in_line", - "trimmomatic", - "circos", - "control_freec", - "tp_text_file_with_recurring_lines", - "Grep1", - "__BUILD_LIST__", - "multiqc", - "samtools_calmd", - "__EXTRACT_DATASET__", - "bwa_mem", - "__RELABEL_FROM_FILE__", - "samtools_view", - "bamleftalign" - ], - "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 - } - ] - }, - "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": 30, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 127, - "visitors": 994, - "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" - } - ], - "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-06-24 00:06:34 +0000", - "name": "Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC", - "path": "topics/variant-analysis/tutorials/somatic-variant-discovery/workflows/Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC.ga", - "test_results": null, - "tests": true, - "title": "Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC", - "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", - "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", - "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" - } - ], - "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": "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": [ - "De-novo assembly", - "Sequence alignment analysis", - "Generation", - "Sequence alignment", - "Genome indexing", - "Sequencing quality control", - "Sequence file editing", - "Multiple sequence alignment", - "Read mapping", - "Phylogenetic analysis", - "Data handling", - "Data retrieval", - "Sequence analysis", - "Sequence contamination filtering" - ], - "edam_topic": [], - "exact_supported_servers": [ - "UseGalaxy.eu", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.8, - "feedback_number": 5, - "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": 1657, - "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": [ - "samtools_view", - "bamtools_split_ref", - "upload1", - "rbc_mafft", - "qualimap_bamqc", - "iqtree", - "collapse_dataset", - "Grep1", - "Show beginning1", - "tp_find_and_replace", - "ivar_consensus", - "seqtk_subseq", - "vapor", - "bwa_mem", - "__RELABEL_FROM_FILE__", - "fastp" - ], - "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": 16, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 173, - "visitors": 1097 - }, - { - "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": [ - "MISSISSIPPI", - "UseGalaxy.eu", - "UseGalaxy.fr", - "UseGalaxy.org (Main)" - ], - "feedback_mean_note": 4.0, - "feedback_number": 12, - "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-05-29", - "objectives": [ - "Create a number of Circos plots using the Galaxy tool", - "Familiarise yourself with the various different track types" - ], - "pageviews": 5573430, - "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": [ - "Cut1", - "upload1", - "Remove beginning1", - "circos", - "Grep1", - "random_lines1" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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": 65, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 258, - "visitors": 2007991, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-9760-8992", - "name": "Helena Rasche" - }, - { - "class": "Person", - "identifier": "0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:34 +0000", - "name": "Circos tutorial", - "path": "topics/visualisation/tutorials/circos/workflows/main_workflow.ga", - "test_results": null, - "tests": false, - "title": "Circos tutorial", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/visualisation-circos/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos/workflows/main_workflow.ga", - "wfid": "visualisation-circos", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - }, - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-9760-8992", - "name": "Helena Rasche" - }, - { - "class": "Person", - "identifier": "0000-0003-3803-468X", - "name": "Saskia Hiltemann" - } - ], - "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-06-24 00:06:34 +0000", - "name": "Circos: Nature workflow", - "path": "topics/visualisation/tutorials/circos/workflows/nature_workflow.ga", - "test_results": null, - "tests": false, - "title": "Circos: Nature workflow", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/visualisation-circos/versions/nature_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos/workflows/nature_workflow.ga", - "wfid": "visualisation-circos", - "wfname": "nature_workflow", - "workflow": "nature_workflow.ga" - } - ], - "zenodo_link": "https://zenodo.org/record/4494146" - }, - { - "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": 5.0, - "feedback_number": 1, - "hands_on": true, - "id": "visualisation/circos-microbial", - "inexact_supported_servers": [ - "MISSISSIPPI", - "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-11", - "objectives": [ - "Plot an *E. coli* genome in Galaxy", - "With tracks for the annotations, sequencing data, and variants." - ], - "pageviews": 532, - "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": [ - "Cut1", - "circos_interval_to_text", - "circos_gc_skew", - "gff2bed1", - "circos", - "circos_interval_to_tile", - "circos_wiggle_to_scatter", - "deeptools_bam_coverage" - ], - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.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, - "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": 4, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 76, - "visitors": 408, - "workflows": [ - { - "creators": [ - { - "class": "Person", - "identifier": "0000-0001-9760-8992", - "name": "Helena Rasche" - } - ], - "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-06-24 00:06:34 +0000", - "name": "Circos for E. Coli", - "path": "topics/visualisation/tutorials/circos-microbial/workflows/main_workflow.ga", - "test_results": null, - "tests": true, - "title": "Circos for E. Coli", - "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/visualisation-circos-microbial/versions/main_workflow", - "url": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos-microbial/workflows/main_workflow.ga", - "wfid": "visualisation-circos-microbial", - "wfname": "main_workflow", - "workflow": "main_workflow.ga" - } - ], - "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/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": 5533213, - "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": 3, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 152, - "visitors": 1984183 - }, - { - "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", - "MISSISSIPPI", - "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": 5538218, - "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": "MISSISSIPPI", - "url": "https://mississippi.sorbonne-universite.fr", - "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": 27, - "video": false, - "video_versions": 0, - "video_view": 0, - "visit_duration": 289, - "visitors": 1987889, - "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/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": 814911, - "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": 5, - "video": true, - "video_versions": 0, - "video_view": 0, - "visit_duration": 149, - "visitors": 345921, - "voice": { - "id": "Brian", - "lang": "en-GB", - "neural": true - } - } -] \ No newline at end of file diff --git a/results/assembly/index.html b/results/assembly/index.html deleted file mode 100644 index a9feda5e..00000000 --- a/results/assembly/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - Simple HTML Page - - - -
-

Assembly ressources from the Galaxy Codex

-

Tools

- - - -

Training

- - -
- - diff --git a/results/assembly/tools.html b/results/assembly/tools.html deleted file mode 100644 index e7c67dec..00000000 --- a/results/assembly/tools.html +++ /dev/null @@ -1,12453 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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
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.0001000100000000000000000000000000000000010842
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.2300010001000000000000000010000000000000000000
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 assemblyUp-to-datehttp://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.7Genome assembly, De-novo assembly, ScaffoldingSequence assembly0110011000000000000000001000000100000000113914278
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.3adapterremoval2.3.3Sequence trimming, Sequence merging, Primer removal00100010000000000000000000000000000000001037217
agatagatGTF/GFF analysis toolkitagatagatAGATAnother Gff Analysis Toolkit (AGAT)Suite of tools to handle gene annotations in any GTF/GFF format.Data handling, Genome annotationGenomicsTo updatehttps://github.com/NBISweden/AGATConvert Formats, Statistics, Fasta Manipulationagatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/agathttps://github.com/bgruening/galaxytools/tree/master/tools/agat1.2.0agat1.4.0Data handling, Genome annotationGenomics00110011000000000000000000000000000000001042481
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.7000100010000000000000000000000000000000001111329
assembly-statsassembly_statsAssembly metric visualisations to facilitate rapid assessment and comparison of assembly quality.To updatehttps://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-stats00010001000000000000000000000000000000000000
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.800000000000000000000000010000000000000000000
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.900100010000000000000000000000000000000001126257
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.0perl00000000000000000000000000000000000000000000
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.600000000000000000000000000000000000000000000
berokkaberokkaBerokka is used to trim, circularise, orient & filter long read bacterial genome assemblies.To updatehttps://github.com/tseemann/berokkaFasta Manipulationberokkaiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/berokkahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/berokka0.2.3berokka01000100000000000000000000000000000000000000
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.0111011100000000000000000000000000000000010112531
biscotbiscotBionano scaffolding correction toolTo updatehttps://github.com/institut-de-genomique/biscotAssemblybiscotiuchttps://github.com/bgruening/iuc/tree/master/tools/biscothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot2.3.3biscot00100010000000000000000000000000000000001013
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.7000100010000000000000000010000000000000001112122499
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.0python00000000000000000000000110000001000000000000
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.1python00000000000000000000000010000000000000000000
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.1python00000000000000000000000110000001000000000000
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.1python00000000000000000000000010000000000000000000
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.701100110000000000000000000000000000000001021685
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.20110110011000000000000000011000000100000000101017766
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 clusteringSequencing0011001110000000000000100000000000000000112804474
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.1python00000000000000000000000110001001000000000000
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 language00100010000000000000000000000000000000001016269
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.2000000000000000000000000000000000000000000000
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.5800000000000000000000000000000000000000000000
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.000000000000000000000000000000000000000000000
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.2000000000000000000000000010000000000000000000
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.2000000000000000000000000010000000000000000000
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, SequencingTo updatehttps://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.8cutadapt4.9Sequence trimming, Primer removal, Read pre-processingGenomics, Probes and primers, Sequencing1111111100010010000000111001000100000100115090232004
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 determination10101010000000000000000010000000000000001142369
earmake_earA tool to compile assembly reports and stastics from assembly pipelineTo updatehttps://github.com/ERGA-consortium/EARs/tree/mainSequence Analysis, Assemblyerga_eariuchttps://github.com/ERGA-consortium/EARs/tree/mainhttps://github.com/bgruening/galaxytools/tree/master/tools/ear1.0.0reportlab00100010000000000000000000000000000000000000
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 analysis1071071071071071071071070000001070000000001070010700010700000000107107181689530
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 analysisUp-to-datehttp://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-fasplit377Sequence analysis1111111100000000000000001001000000000000112422644
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.1401000100000000000000000010000001000000000000
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.3python1111111100010010000000001000000100000000113807758
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.11.01111111100000000000000001000000000000000118835793
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.500000000000000000000000000000000000000000000
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.2python11111111000000100000000100000001000000001135048649
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.14111111111001001000000001100000010000000011682912
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.0python11111111000000000000000010000001000000001146129886
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.1411111111100000000000000010000001000000001129774
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.1python111111110001001000000000100000010000000011622105935
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.000100010000000000000000000000000000000000000
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.5111111110000001000000000100000000000000011668676
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.511111111000000000000000010000000000000001126614222
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.500000000000000000000000000000000000000000000
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.5111111110001001000000000100000010000000011102894802
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.21010101000000000000000001000000000000000106795765
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.5111111110000000000000000000000000000000011692503
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.511111111000000000000000000000000000000001116170
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.000000000000000000000000000000000000000000000
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.51111111100000000000000000000000100000000111228410
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.5111111110000000000000011100000000000000011108717024
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.511111111000000000000000010000000000000001124516635
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.51111111100000000000000000000000000000000111963092
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.14111111111000000000000000100000010000000011511178
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.1411111111100000000000000010000001000000001111220
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.14111111111000000000000001100000010000000011150915172
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.1400000000000000000000000000000000000000000000
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.51111111100000000000000000001000000000000112214246
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.1411111111100100000000000110000001000000001141913599
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.51111111100010000000000000000000100000000119312593
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.51111111100000000000000000000000100000000112109757
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.51111111100000000000000000000000000000000114595676
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+galaxy0fastqc0.12.1Sequence composition calculation, Sequencing quality control, Statistical calculationSequencing, Data quality management, Sequence analysis111111111001101000000011100100010001110011174471556625
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.000000000000000000000000000000000000000000000
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.51110111000000010000000001000000000000000111371178178
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.14111111111001001000000011100000010000000011271810
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.1411111111100000100000000010000001000000001112816591
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.14111111110001001000000011100000010000000011963333
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.1411111111100000100000001110010001000000001111461218
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.1411111111100000100000001110000001000000001125249
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.14111111111000001000000011100100010000000011632176
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.14111111111000001000000011100000010000000011682280
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.1411111111100000100000001110000001000000001115610832
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.1411111111100000100000001110000001000000001120513149
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/fermikitr193fermi2r19300000000000000000000000000000000000000000000
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.1200000000000000000000000110000001000000000000
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.3python11111111000000000000000000000001000000001142626274
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.800000000000000000000000010000000000000000000
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 control11111111000000000000000010000000000000001161730483
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.000200020000000000000000000000000000000002014331
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 assembly1010101000000000000000000000000000000000117413759
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.3flye2.9.4Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing111111110000000000000000100100000000000011149920904
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+galaxy100100010000000100000000000000000000000001120166
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.3python00000000000000000000000000000000000000000000
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.200000000000000000000000010000001000000000000
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 organisms02200220000000000000000000000000000000002018495
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 splicing0020002000000000000000002000000000000000221366651
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/guppy0.2.200000000000000000000000010000000000000000000
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 classification01000100000000000000000000000000000000000000
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, Genomics00110011000000000000000000000000000000001036295
hifiasmhifiasmA fast haplotype-resolved de novo assemblerTo updatehttps://github.com/chhylp123/hifiasmAssemblyhifiasmbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hifiasmhttps://github.com/bgruening/galaxytools/tree/master/tools/hifiasm0.19.8hifiasm0.19.91111111100000000000000001000000000000000102971410
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.3hisat0000000000000000000000001000000000000000000228
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 alignment1111111100000000000000101000000100000000114183299104
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, Genomics00100010000000000000000000000000000000001039354
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 assembly303330330000000000000000000000000000000033691127
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 sites00100010000000000000000000000000000000001014139
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, Genomics011101110000000000000000100000000000000011911138
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 assembly888088800000000000000001100000010000000088632022
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.21111111100000000000000000001000100000000113224090
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, Genomics0010001000000000000000000000000000000000119152
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, Sequencing01100110000000000000000010000000000000001077405
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.7000000000000000000000000000000000000000000000
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 assembly1111111110000000000000101001000100001000115489530
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 assembly10111011000000000000000010000001000000001154475
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 biology2222222200000000000000000000000000000000102442483
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 analysis00000000000000000000000000000000000000000000
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 primers00000000000000000000000000000000000000000000
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 assembly0110011000000000000000001000000000000000111092206
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 assembly11111111000000000000000010000000000000001117811938
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.101100110000000000000000010000000000000001066881
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/mitohifi311101110000000000000000010000000000000001056613
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.210101010000000000000000000000000000000001134803
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.22.3Sequencing quality controlSequencing, Bioinformatics, Sequence analysis, Genomics1111111100000010000000111001000100000100118320162790
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 assembly00100010000000000000000000000000000000001095667
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 assembly00100010000000000000000000000000000000001084268
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.800000000000000000000000000000000000000000000
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.50111011100000000000000001000000000000000101626384
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.0900000000000000000000000110000001000000000000
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.3004000400000000000000000100000000000000044392654
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.110101010000000000000000000000000000000000000
plasmidspadesplasmidspadesGenome assembler for assemblying plasmidTo updateAssemblyplasmidspadesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades1.1spades4.0.000000000000000100000000110000000000000000000
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.41110111000000000000000001000000000000000111046185468
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, Sequencing131313013131300000001300000000013000000000000000131340918773
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, Metagenomics101110110000000000000000100000000000000011707881
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.2python00000000000000000000000000000000000000000000
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 assembly11101110000000000000000000000000000000001016716800
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, Sequencing11111111000000000000001010000000000000001035021123
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.100000000000000000000000000000000000000000000
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 assembly111111110000001000000011100100010000000011356751567
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 phenotype00000000000000000000000000000000000000000100
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 assembly0011001100000000000000001000000000000000112372833
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.30111011100000000000000001000000000000000102626902
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-Seq00100010000000000000000000000000000000001030569
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.2.3rnaquast2.2.3De-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics1011101100000000000000000000000000000000101091110
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, Mapping11101110000000000000000010000000000000001084454
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, Mapping00000000000000000000000000000000000000000000
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.701111111100000000000000001000000000000000111493765
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.2000000000000000000000000000000000000000000000
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.201111111100000000000000111001000000000000112964948
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.20111111110001000000000011100100010000000011145048426
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.7011111111000000000000000010000000000000001130625302
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.70001000100000000000000000100000000000000011823784
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.7000000000000000000000000010000000000000000000
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.500000000000000000000000000000000000000000000
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.500000000000000000000000010000000000000000100
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.7001000100000000000000000010000000000000000000
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 primers00100010000000000000000000000000000000000000
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.0python00000000000000000000000010000001000000000000
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.0011001100000000000000000100000000000000010154763
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.010101010000000000000000000000000000000001121220
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 assembly111111110000000000000010100000000000000011100841600
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 management10111011000000000000000000000001000001001126914982
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, Mathematics11101110000000000000000000000000000000001122203
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.spadesrnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspadesSPAdesSt. 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 assembly999999990000001000000013800200030000000093354772953
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+galaxy1sed00000000000000000000000000000000000000000000
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.000000000000000000000000010000000000000000000
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, Sequencing3333333300000000000000203003000300000000336247350032
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.51111111100010000000000000000000000000000112007388
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.1pigz00000000000000000000000000000000000000000000
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.1VisualisationMetagenomics111111110000000000000011100100000000100011180127426
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, Mapping00100010000000000000000000000000000000001036460
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 analysis1111111100010000000000101001000000000000112334238699
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.391111111100010010000000111000000100011000115862305866
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.50555055500000000000000005000000000000000501478942
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.0unicycler0.5.0Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assembly111111110000000000000001100100010000000011155865732
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.00010001000000000000000000000000000000000102586
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 assembly222222222000000000000022000000000000000020208325420
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 assembly1110111010010000000000100000000000000000112554741
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.1001000100000000000000000000000000000000010922
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, Sequencing0011001100000000000000001000000000000000111161660
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.100000000000000000000000000000000000000000000
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.1python00000000000000000000000110000001000000000000
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.211101110000000000000000000000000000000001064344
- -
\ No newline at end of file diff --git a/results/assembly/tools.tsv b/results/assembly/tools.tsv deleted file mode 100644 index 71624f67..00000000 --- a/results/assembly/tools.tsv +++ /dev/null @@ -1,177 +0,0 @@ -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 -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 0 0 0 1 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 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 Up-to-date 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.7 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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.3 adapterremoval 2.3.3 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 0 0 0 1 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 To update 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.2.0 agat 1.4.0 Data handling, Genome 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 0 0 0 1 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 0 0 0 1 1 11 329 False -assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. To update 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 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 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 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 0 0 0 1 1 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 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 0 0 False -berokka berokka Berokka is used to trim, circularise, orient & filter long read bacterial genome assemblies. To update 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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 1 0 112 531 False -biscot biscot Bionano scaffolding correction tool To update 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 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 0 1 1 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 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 0 0 0 1 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 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 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 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 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 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 To update 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.8 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 iuc https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 1.0.0 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 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 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 0 107 107 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 Up-to-date 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 377 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 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 0 1 1 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.11.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 1 1 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 1 0 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 0 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 1 1 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 0 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 0 1 1 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 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 1 1 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 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 0 1 1 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 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 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 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 0 1 1 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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+galaxy0 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 1 0 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 1 0 0 1 1 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 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 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 0 1 1 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 1 0 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 0 1 1 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 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 0 1 1 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 0 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 0 1 1 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 1 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 0 0 0 1 1 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 1 0 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 0 1 1 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 1 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 0 0 0 1 1 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 1 0 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 0 1 1 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 1 0 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 0 1 1 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 1 0 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 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.3 flye 2.9.4 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 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 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 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 0 0 0 1 0 36 295 False -hifiasm hifiasm A fast haplotype-resolved de novo assembler To update https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm 0.19.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 3 3 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 8 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 1 0 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 1 0 0 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 0 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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.22.3 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 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 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 0 0 0 1 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 13 13 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 1 1 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 0 0 0 1 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 0 1 1 0 0 1 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 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 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.2.3 rnaquast 2.2.3 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 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 1 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 1 0 0 1 1 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 0 0 0 1 1 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 rnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspades 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 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 0 9 3 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 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 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 0 0 2 0 3 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 0 1 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 0 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 0 1 1 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 0 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 0 1 1 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 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.0 unicycler 0.5.0 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 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 0 0 2 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 1 0 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 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 0 64 344 False diff --git a/results/assembly/tools_filtered_by_ts_categories.tsv b/results/assembly/tools_filtered_by_ts_categories.tsv deleted file mode 100644 index 71624f67..00000000 --- a/results/assembly/tools_filtered_by_ts_categories.tsv +++ /dev/null @@ -1,177 +0,0 @@ -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 -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 0 0 0 1 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 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 Up-to-date 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.7 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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.3 adapterremoval 2.3.3 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 0 0 0 1 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 To update 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.2.0 agat 1.4.0 Data handling, Genome 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 0 0 0 1 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 0 0 0 1 1 11 329 False -assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. To update 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 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 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 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 0 0 0 1 1 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 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 0 0 False -berokka berokka Berokka is used to trim, circularise, orient & filter long read bacterial genome assemblies. To update 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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 1 0 112 531 False -biscot biscot Bionano scaffolding correction tool To update 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 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 0 1 1 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 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 0 0 0 1 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 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 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 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 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 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 To update 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.8 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 iuc https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 1.0.0 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 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 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 0 107 107 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 Up-to-date 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 377 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 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 0 1 1 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.11.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 1 1 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 1 0 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 0 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 1 1 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 0 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 0 1 1 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 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 1 1 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 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 0 1 1 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 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 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 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 0 1 1 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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+galaxy0 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 1 0 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 1 0 0 1 1 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 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 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 0 1 1 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 1 0 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 0 1 1 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 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 0 1 1 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 0 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 0 1 1 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 1 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 0 0 0 1 1 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 1 0 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 0 1 1 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 1 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 0 0 0 1 1 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 1 0 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 0 1 1 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 1 0 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 0 1 1 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 1 0 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 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.3 flye 2.9.4 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 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 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 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 0 0 0 1 0 36 295 False -hifiasm hifiasm A fast haplotype-resolved de novo assembler To update https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm 0.19.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 3 3 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 8 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 1 0 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 1 0 0 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 0 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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.22.3 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 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 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 0 0 0 1 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 13 13 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 1 1 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 0 0 0 1 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 0 1 1 0 0 1 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 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 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.2.3 rnaquast 2.2.3 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 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 1 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 1 0 0 1 1 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 0 0 0 1 1 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 rnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspades 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 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 0 9 3 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 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 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 0 0 2 0 3 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 0 1 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 0 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 0 1 1 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 0 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 0 1 1 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 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.0 unicycler 0.5.0 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 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 0 0 2 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 1 0 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 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 0 64 344 False diff --git a/results/assembly/tools_wordcloud.png b/results/assembly/tools_wordcloud.png deleted file mode 100644 index a16bdde9..00000000 Binary files a/results/assembly/tools_wordcloud.png and /dev/null differ diff --git a/results/biodiversity/index.html b/results/biodiversity/index.html deleted file mode 100644 index 85fede02..00000000 --- a/results/biodiversity/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - Simple HTML Page - - - -
-

Biodiversity ressources from the Galaxy Codex

-

Tools

- - - -

Training

- - -
- - diff --git a/results/biodiversity/tools.html b/results/biodiversity/tools.html deleted file mode 100644 index f09b55eb..00000000 --- a/results/biodiversity/tools.html +++ /dev/null @@ -1,8813 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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
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-emlassemblyline0099009900000000000000000000000000000000205102
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-base006500650000000000000000000000000000000050082
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-base00330033000000000000000000000000000000000000
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.2055505550000000000000000000000000000000054731004
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.0001000100000000000000000000000000000000010842
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.2300010001000000000000000010000000000000000000
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 assemblyUp-to-datehttp://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.7Genome assembly, De-novo assembly, ScaffoldingSequence assembly0110011000000000000000001000000100000000113914278
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.AnnotationTo updatehttps://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.dbAnnotation111111110000000000000000100000010000000011117525975
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.000100010000000000000000000000000000000000000
assembly-statsassembly_statsAssembly metric visualisations to facilitate rapid assessment and comparison of assembly quality.To updatehttps://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-stats00010001000000000000000000000000000000000000
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.800000000000000000000000010000000000000000000
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.0perl00000000000000000000000000000000000000000000
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+galaxy0pandas00000000000000000000000000000000000000000000
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.0111011100000000000000000000000000000000010112531
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, Workflows30003000000000000000000000000000000000000000
biscotbiscotBionano scaffolding correction toolTo updatehttps://github.com/institut-de-genomique/biscotAssemblybiscotiuchttps://github.com/bgruening/iuc/tree/master/tools/biscothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot2.3.3biscot00100010000000000000000000000000000000001013
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.0python00000000000000000000000110000001000000000000
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.1python00000000000000000000000110000001000000000000
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.1python00000000000000000000000010000000000000000000
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.701100110000000000000000000000000000000001021685
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.600100010000000000000000000000000000000001017109
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 analysis01110111000000000000000000000000000000001010567
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.20110110011000000000000000011000000100000000101017766
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-base00330033000000000000000000000000000000003019174
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.011101110000000000000000000000001000000001141815690
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 language00100010000000000000000000000000000000001016269
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.2000000000000000000000000000000000000000000000
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.5800000000000000000000000000000000000000000000
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.2000000000000000000000000010000000000000000000
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.2000000000000000000000000010000000000000000000
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-tangles006600660000000000000000000000000000000060146658
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.500110011000000000000000000000000000000000005
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 determination10101010000000000000000010000000000000001142369
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_100000000000000000000000000000000000000000000
earmake_earA tool to compile assembly reports and stastics from assembly pipelineTo updatehttps://github.com/ERGA-consortium/EARs/tree/mainSequence Analysis, Assemblyerga_eariuchttps://github.com/ERGA-consortium/EARs/tree/mainhttps://github.com/bgruening/galaxytools/tree/master/tools/ear1.0.0reportlab00100010000000000000000000000000000000000000
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.000100010000000000000000000000000000000000000
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/fermikitr193fermi2r19300000000000000000000000000000000000000000000
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.800000000000000000000000010000000000000000000
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 assembly1010101000000000000000000000000000000000117413759
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.3flye2.9.4Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing111111110000000000000000100100000000000011149920904
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 annotationGenomics3555355500000000000000000000000000000000509005906
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.0008800880000000000000000000000000000000088101475
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 organisms02200220000000000000000000000000000000002018495
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 analysisTranscriptomics2222222200000000000000002000000000000000224085484
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 splicing0020002000000000000000002000000000000000221366651
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 classification01000100000000000000000000000000000000000000
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, Genomics00110011000000000000000000000000000000001036295
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 transcripts001100110000000000000000000000000000000010193
hifiasmhifiasmA fast haplotype-resolved de novo assemblerTo updatehttps://github.com/chhylp123/hifiasmAssemblyhifiasmbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hifiasmhttps://github.com/bgruening/galaxytools/tree/master/tools/hifiasm0.19.8hifiasm0.19.91111111100000000000000001000000000000000102971410
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-base00100010000000000000000000000000000000000000
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.3hisat0000000000000000000000001000000000000000000228
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 alignment1111111100000000000000101000000100000000114183299104
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, Genomics00100010000000000000000000000000000000001039354
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 variation00000000000000000000000010000000000000000000
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 assembly303330330000000000000000000000000000000033691127
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 sites00100010000000000000000000000000000000001014139
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-getopt00100010000000000000000000000000000000000000
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, Genomics011101110000000000000000100000000000000011911138
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 assembly888088800000000000000001100000010000000088632022
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, Sequencing01100110000000000000000010000000000000001077405
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.0pandas00100010000000000000000000000000000000000000
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 assembly1111111110000000000000101001000100001000115489530
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 assembly10111011000000000000000010000001000000001154475
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 biology2222222200000000000000000000000000000000102442483
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 analysis00000000000000000000000000000000000000000000
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 families00100010000000000000000000000000000000001116184
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 assembly0110011000000000000000001000000000000000111092206
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 assembly11111111000000000000000010000000000000001117811938
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.101100110000000000000000010000000000000001066881
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/mitohifi311101110000000000000000010000000000000001056613
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 assembly00100010000000000000000000000000000000001095667
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 assembly00100010000000000000000000000000000000001084268
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.50111011100000000000000001000000000000000101626384
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.0900000000000000000000000110000001000000000000
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-base102110210000000000000000000000000000000010445
oceanargo_getdataAccess, 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.1500100010000000000000000000000000000000000006
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-base00100010000000000000000000000000000000000000
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-base00100010000000000000000000000000000000000000
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 RNA011001100000000000000000100000000000100010742565
plasmidspadesplasmidspadesGenome assembler for assemblying plasmidTo updateAssemblyplasmidspadesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades1.1spades4.0.000000000000000100000000110000000000000000000
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 analysis00110011100000000000100010000000000000000000
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.2python00000000000000000000000000000000000000000000
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 assembly11101110000000000000000000000000000000001016716800
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 assembly111111110000001000000011100100010000000011356751567
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 phenotype00000000000000000000000000000000000000000100
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 assembly0011001100000000000000001000000000000000112372833
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.30111011100000000000000001000000000000000102626902
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-mgcv00770077000000000000000000000000000000007722526
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.8001000100000000000000000000000000000000000016
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 repeats1111111100000000000000001000000000000000102171177
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-base00100010000000000000000000000000000000000000
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.2.3rnaquast2.2.3De-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics1011101100000000000000000000000000000000101091110
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, Mapping11101110000000000000000010000000000000001084454
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.701111111100000000000000001000000000000000111493765
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.2000000000000000000000000000000000000000000000
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.201111111100000000000000111001000000000000112964948
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.20111111110001000000000011100100010000000011145048426
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-base00100010000000000000000000000000000000000000
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.70001000100000000000000000100000000000000011823784
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.500000000000000000000000000000000000000000000
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.0011001100000000000000000100000000000000010154763
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 assembly111111110000000000000010100000000000000011100841600
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, Mathematics11101110000000000000000000000000000000001122203
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.spadesrnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspadesSPAdesSt. 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 assembly999999990000001000000013800200030000000093354772953
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.9python20202020000000000000000020000000000000002234446
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.200110011000000000000000000000000000000001156769
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-base40774077000000000000000000000000000000007021225
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.200550055000000000000000000000000000000005510325
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.700000000000000000000000010000000000000000000
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.1VisualisationMetagenomics111111110000000000000011100100000000100011180127426
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 assembly00000000000000000000000000000000000000000000
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, Mapping00100010000000000000000000000000000000001036460
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 elements55505550000000000000000000000000000000005584907
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.50555055500000000000000005000000000000000501478942
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 organisms00110011000000000000000000000000000000000005
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.0unicycler0.5.0Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assembly111111110000000000000001100100010000000011155865732
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 assembly222222222000000000000022000000000000000020208325420
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 assembly1110111010010000000000100000000000000000112554741
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.1001000100000000000000000000000000000000010922
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.100440044000000000000000000000000000000004435112203
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, Sequencing0011001100000000000000001000000000000000111161660
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.0xarray5265526500000000000000000000000000000000621755876
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.211101110000000000000000000000000000000001064344
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-base00100010000000000000000000000000000000000000
- -
\ No newline at end of file diff --git a/results/biodiversity/tools.tsv b/results/biodiversity/tools.tsv deleted file mode 100644 index 87ed8fe5..00000000 --- a/results/biodiversity/tools.tsv +++ /dev/null @@ -1,127 +0,0 @@ -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 -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 0 0 0 2 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 0 0 0 5 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 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 0 0 0 5 4 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 0 0 0 1 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 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 Up-to-date 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.7 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 To update 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 Annotation 1 1 1 1 1 1 1 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 1 1 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 0 0 False -assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. To update 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 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 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 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 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 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 0 0 0 1 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 0 0 False -biscot biscot Bionano scaffolding correction tool To update 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 0 0 0 1 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 0 0 0 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 3 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 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 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 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 0 0 0 6 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 iuc https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 1.0.0 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 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 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.3 flye 2.9.4 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 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 5 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 0 0 0 8 8 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 0 0 0 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 0 0 0 1 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 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 1 0 1 93 False -hifiasm hifiasm A fast haplotype-resolved de novo assembler To update https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm 0.19.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 0 0 0 3 3 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 77 405 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 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 1 0 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 1 0 0 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 0 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 56 613 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 0 0 0 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 0 4 45 False -ocean argo_getdata 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 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 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 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 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 0 0 0 1 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 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 0 1 1 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 0 0 0 1 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 0 1 1 0 0 1 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 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 7 7 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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.2.3 rnaquast 2.2.3 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 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 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 rnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspades 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 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 0 9 3 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 0 7 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 0 0 0 5 5 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 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 0 0 0 1 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 0 0 0 5 5 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 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 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.0 unicycler 0.5.0 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 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 2 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 1 0 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 0 1 1 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 0 0 0 1 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 0 0 0 4 4 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 6 2 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 0 0 0 1 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 0 0 False diff --git a/results/biodiversity/tools_filtered_by_ts_categories.tsv b/results/biodiversity/tools_filtered_by_ts_categories.tsv deleted file mode 100644 index 87ed8fe5..00000000 --- a/results/biodiversity/tools_filtered_by_ts_categories.tsv +++ /dev/null @@ -1,127 +0,0 @@ -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 -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 0 0 0 2 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 0 0 0 5 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 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 0 0 0 5 4 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 0 0 0 1 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 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 Up-to-date 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.7 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 To update 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 Annotation 1 1 1 1 1 1 1 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 1 1 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 0 0 False -assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. To update 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 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 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 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 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 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 0 0 0 1 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 0 0 False -biscot biscot Bionano scaffolding correction tool To update 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 0 0 0 1 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 0 0 0 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 3 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 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 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 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 0 0 0 6 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 iuc https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 1.0.0 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 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 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.3 flye 2.9.4 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 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 5 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 0 0 0 8 8 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 0 0 0 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 0 0 0 1 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 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 1 0 1 93 False -hifiasm hifiasm A fast haplotype-resolved de novo assembler To update https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm 0.19.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 0 0 0 3 3 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 77 405 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 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 1 0 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 1 0 0 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 0 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 56 613 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 0 0 0 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 0 4 45 False -ocean argo_getdata 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 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 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 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 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 0 0 0 1 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 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 0 1 1 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 0 0 0 1 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 0 1 1 0 0 1 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 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 7 7 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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.2.3 rnaquast 2.2.3 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 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 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 rnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspades 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 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 0 9 3 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 0 7 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 0 0 0 5 5 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 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 0 0 0 1 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 0 0 0 5 5 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 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 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.0 unicycler 0.5.0 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 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 2 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 1 0 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 0 1 1 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 0 0 0 1 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 0 0 0 4 4 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 6 2 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 0 0 0 1 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 0 0 False diff --git a/results/biodiversity/tools_wordcloud.png b/results/biodiversity/tools_wordcloud.png deleted file mode 100644 index 6dd6df2e..00000000 Binary files a/results/biodiversity/tools_wordcloud.png and /dev/null differ diff --git a/results/imaging/index.html b/results/imaging/index.html deleted file mode 100644 index 92568084..00000000 --- a/results/imaging/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - Simple HTML Page - - - -
-

Imaging ressources from the Galaxy Codex

-

Tools

- - - -

Training

- - -
- - diff --git a/results/imaging/tools.html b/results/imaging/tools.html deleted file mode 100644 index 7f936e1d..00000000 --- a/results/imaging/tools.html +++ /dev/null @@ -1,1393 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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
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.0wget00100010000000000000000000000000000000000002
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.8cellpose00100010000000000000000000000000000000000000
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 phenotype023231902323190000000000000000000000000000000023191784614
cellprofiler_v4cp_cellprofiler4cellProfiler4 wrapperTo updateImagingcellprofiler4bgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v44.2.6001100110000000000000000000000000000000010843
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.43graphicsmagick1.3.26103010300000000000000000000000000000000022432605
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_movie20230328Fiji2023121100000000000000000000000000000000000000000000
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/imagej2Image analysis, Image annotation, VisualisationImaging0027000270000000000000000000000000000000002727261537
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_omero20231221Fiji2023121100000000000000000000000000000000000000000000
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_gastruloids20221216fiji2023121100000000000000000000000000000000000000000000
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_tables20230623fiji2023121100000000000000000000000000000000000000000000
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.100000000000000000000000000000000000000000000
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_images20240521fiji2023121100000000000000000000000000000000000000000000
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_gastruloid20230809fiji2023121100000000000000000000000000000000000000000000
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_measurements20240214fiji2023121100000000000000000000000000000000000000000000
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.2.1geojson001000100000000000000000000000000000000010559
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.2spyboat001000100000000000000000000000000000000010167
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.100000000000000000000000000000000000000000000
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.100100010000000000000000000000000000000000000
- -
\ No newline at end of file diff --git a/results/imaging/tools.tsv b/results/imaging/tools.tsv deleted file mode 100644 index 73b4cc8c..00000000 --- a/results/imaging/tools.tsv +++ /dev/null @@ -1,19 +0,0 @@ -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 -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 0 0 2 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.8 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 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 0 0 0 23 19 178 4614 False -cellprofiler_v4 cp_cellprofiler4 cellProfiler4 wrapper To update Imaging cellprofiler4 bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v4 4.2.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 0 0 0 1 0 8 43 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.43 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 0 0 0 2 2 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 0 0 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 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 0 0 0 27 27 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 0 0 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 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 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 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 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 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 0 0 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.2.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 0 0 0 1 0 5 59 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 0 0 0 1 0 1 67 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 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 0 0 False diff --git a/results/imaging/tools_filtered_by_ts_categories.tsv b/results/imaging/tools_filtered_by_ts_categories.tsv deleted file mode 100644 index 73b4cc8c..00000000 --- a/results/imaging/tools_filtered_by_ts_categories.tsv +++ /dev/null @@ -1,19 +0,0 @@ -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 -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 0 0 2 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.8 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 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 0 0 0 23 19 178 4614 False -cellprofiler_v4 cp_cellprofiler4 cellProfiler4 wrapper To update Imaging cellprofiler4 bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v4 4.2.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 0 0 0 1 0 8 43 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.43 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 0 0 0 2 2 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 0 0 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 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 0 0 0 27 27 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 0 0 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 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 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 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 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 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 0 0 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.2.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 0 0 0 1 0 5 59 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 0 0 0 1 0 1 67 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 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 0 0 False diff --git a/results/imaging/tools_wordcloud.png b/results/imaging/tools_wordcloud.png deleted file mode 100644 index eba461a4..00000000 Binary files a/results/imaging/tools_wordcloud.png and /dev/null differ diff --git a/results/index.html b/results/index.html deleted file mode 100644 index 265f3afb..00000000 --- a/results/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - Simple HTML Page - - - -
-

Galaxy ressources from the Galaxy Codex

-

Tools

- - - -

Training

- - -
- - diff --git a/results/machine-learning/index.html b/results/machine-learning/index.html deleted file mode 100644 index 95a745f2..00000000 --- a/results/machine-learning/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - Simple HTML Page - - - -
-

Machine-learning ressources from the Galaxy Codex

-

Tools

- - - -

Training

- - -
- - diff --git a/results/machine-learning/tools.html b/results/machine-learning/tools.html deleted file mode 100644 index c1f8bed9..00000000 --- a/results/machine-learning/tools.html +++ /dev/null @@ -1,693 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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
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.1002000200000000000000000000000000000000000013
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.post1chopin210001000000000000000000000000000000000000000
decontaminatordecontaminatorDeep Learning method for novel virus detection in sequencing datadecontaminatordecontaminatorTo 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.0numpy0010001000000000000000000000000000000000101599
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 immunotherapeutics0010001000000000000000000000000000000000103501
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.03014311630143116000000000000000000000000000000003127958113932
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.5python10101010000000000000000000000000000000001115445
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 classificationVirology00100010000000000000000000000000000000001040234
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/whisper2023111700100010000000000000000000000000000000000000
- -
\ No newline at end of file diff --git a/results/machine-learning/tools.tsv b/results/machine-learning/tools.tsv deleted file mode 100644 index bd5a1c9f..00000000 --- a/results/machine-learning/tools.tsv +++ /dev/null @@ -1,10 +0,0 @@ -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 -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 0 0 13 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 0 0 False -decontaminator decontaminator Deep Learning method for novel virus detection in sequencing data decontaminator decontaminator 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 3 501 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 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 0 0 0 31 27 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 0 0 0 1 1 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 0 0 0 1 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 0 0 False diff --git a/results/machine-learning/tools_filtered_by_ts_categories.tsv b/results/machine-learning/tools_filtered_by_ts_categories.tsv deleted file mode 100644 index bd5a1c9f..00000000 --- a/results/machine-learning/tools_filtered_by_ts_categories.tsv +++ /dev/null @@ -1,10 +0,0 @@ -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 -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 0 0 13 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 0 0 False -decontaminator decontaminator Deep Learning method for novel virus detection in sequencing data decontaminator decontaminator 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 3 501 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 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 0 0 0 31 27 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 0 0 0 1 1 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 0 0 0 1 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 0 0 False diff --git a/results/machine-learning/tools_wordcloud.png b/results/machine-learning/tools_wordcloud.png deleted file mode 100644 index e65a73d3..00000000 Binary files a/results/machine-learning/tools_wordcloud.png and /dev/null differ diff --git a/results/microgalaxy/index.html b/results/microgalaxy/index.html deleted file mode 100644 index aad91697..00000000 --- a/results/microgalaxy/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - Simple HTML Page - - - -
-

microGalaxy ressources from the Galaxy Codex

-

Tools

- - - -

Training

- - -
- - diff --git a/results/microgalaxy/tools.html b/results/microgalaxy/tools.html deleted file mode 100644 index e86f44ce..00000000 --- a/results/microgalaxy/tools.html +++ /dev/null @@ -1,20293 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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
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.2055505550000000000000000000000000000000054731004False
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)Phylogenetics00100010000000000000000010000000000000001123984False
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.2300010001000000000000000010000000000000000000False
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, Microbiology3333333300000000000000303000000000000000331764496717False
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.18Antimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious disease00100010000000000000000000000000000000000000False
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 assemblyUp-to-datehttp://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.7Genome assembly, De-novo assembly, ScaffoldingSequence assembly0110011000000000000000001000000100000000113914278False
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 probability00100010000000000000000000000000000000001013129False
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 probability0010001000000000000000000000000000000000101253False
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 disease1011101100000000000000000000000000000000000591False
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, Taxonomy00100010000000000000000000000000000000001047False
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 families11101110000000000000100010000000000000001127914596False
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 alignmentGenomics0020002000000000000000001000000000000000211238175False
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.800000000000000000000000010000000000000000000False
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.3baktaGenome annotationGenomics, Data submission, annotation and curation, Sequence analysis0111011100000000000000101000000000000000111512982False
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 analysis10111011000000000000001000000001000000001120814021False
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 assembly222222220000002000000022200000020000000022201644390False
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 polymorphism001000100000000000000000000000000000000011864False
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.06bbmap39.06RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignmentRNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq6150615000000000000000003001000000000000404206381False
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 families00100010000000000000000000000000000000000000False
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 ecology0010001000000000000000001000000000000000102181False
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.100000000000000000000000000000000000000000000False
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 analysis226022600000000000000001000000000000000011983906False
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, Workflows30003000000000000000000000000000000000000000False
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.11b2g4pipe0000000000010000000000000000000000000000111011232False
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.7000100010000000000000000010000000000000001112122499False
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.2python001000100000000000000000000000000000000011159264558False
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/bracken2.9bracken2.9Statistical calculationMetagenomics, Microbial ecology11111111000000000000001010000000000000001132618351False
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 analysisTo updatehttps://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.5.0busco5.7.1Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assemblySequence assembly, Transcriptomics, Sequence analysis111111110000000000000000100100000000000011180486180False
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 assembly5250525000000000000000005000000000000000552682878False
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.110001000000000000000000010000000000000000000False
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 clusteringSequencing0011001110000000000000100000000000000000112804474False
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 experiment101010100000000000000000000000000000000010998False
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.2Sequence assembly validation, Sequence composition calculation, Statistical calculationPhylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management0010100010100000000000000000100000000000000001003905165False
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/clair30.1.12clair31.0.8Variant callingMolecular genetics001000100000000000000000100000000000000010681856False
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 analysis10001000000000000000000000000000000000000000False
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 analysis11111111000100100000001110000000000000001165146793False
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, Medicine0010001000000000000000000000000000000000101102False
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 generationPhylogenetics0010001000000000000000000000000000000000112960901False
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 variation203020300000000000000000000000000000000030202757False
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.5800000000000000000000000000000000000000000000False
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 networks1010101000000000000000000000000000000000109147False
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 families00000000000000000000000000000000000000001110332False
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 analysis10111011000000000000000000000000000000000000False
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 binningMetagenomics00550055000000000000000000000000000000005092786False
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 alignmentBioinformatics00220022000000000000000020000000000000002072529False
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.0001000100000000000000000000000000000000011168518False
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, SequencingTo updatehttps://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.8cutadapt4.9Sequence trimming, Primer removal, Read pre-processingGenomics, Probes and primers, Sequencing1111111100010010000000111001000100000100115090232004False
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, Metagenomics101010101010101000000000000000100100010000000000001010126366609False
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 binningMetagenomics00220022000000000000000000000000000000002024706False
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-Seq111111110001001000000011100100010000010011499095752False
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, Proteins33333333000000300000003330001000000000003396349711False
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 determination10101010000000000000000010000000000000001142369False
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 geneticsTo updatehttps://github.com/WrightonLabCSU/DRAMMetagenomicsdramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dramhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dram1.3.5dram1.5.0Gene functional annotationMetagenomics, Biological databases, Molecular genetics005000500000000000000000000000000000000050396886False
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 analysis00220022000000000000000020000000000000002246646False
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.0001000100000000000000000100000000000000010539907False
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 analysis00000000000000000000000000000000000000000000False
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 analysis33333333000000000000000000000000000030003151030565False
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 analysis1071071071071071071071070000001070000000001070010700010700000000107107181689530False
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 editingPhylogenetics00770077000000000000000000000000000000007745899False
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, Biomarkers1111111100000000000000001000000000000000112005265False
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.100000000000000000000000000000001000000000000False
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 epidemiology10101010000000000000000010000000000000001152459False
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 variation0011001100000000000000001000000000000000112503498False
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.000100010000000000000000000000000000000000000False
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 primers11111111000000000000001110010001000000001128031055760False
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, Sequencing11111111000000000000001000000000000000001112664333False
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.11Phylogenetics11111111000100000000001110000001000000001137955434False
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-Seq1111111100000010000000111001000100000100114679696399False
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.800000000000000000000000010000000000000000000False
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 control11111111000000000000000010000000000000001161730483False
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, Proteomics01100110000000000000000000000000000000001117645False
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.3flye2.9.4Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing111111110000000000000000100100000000000011149920904False
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, Metagenomics0010001000000000000000001000000000000000111665588False
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 analysis011101111000000000000000100000000000000011681102False
freyjafreyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variantslineage abundances estimationfreyjafreyjaTo 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.12040204000000000000000004000000000000000405520021False
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, Sequencing000280002800000000000000018180000000000000000000False
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 annotationGenomics3555355500000000000000000000000000000000509005906False
getmlstgetmlstDownload MLST datasets by species from pubmlst.orgTo updateSequence Analysisgetmlstnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/getmlst0.1.4.1srst20.2.000000000000000000000000010000000000000000000False
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 visualisation555555550000000000000010500000030000000055138822148False
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 mappingTaxonomy00100010000000000000000110000000000000001027660False
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 analysis0040004000000000000000000000000000000000401873965False
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_hmm00000000000000000000000000000000000000000000False
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 analysisTranscriptomics2222222200000000000000002000000000000000224085484False
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-Seq111111110000000000000000000100010000000011121019167False
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, Cladistics2222222200000000000000002000000000000000224329277False
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 splicing0020002000000000000000002000000000000000221366651False
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, Proteins01100110000000000000000010000000000000000000False
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 sequencing1110111000000000000000001000000000000000111453340False
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, Bioinformatics0022002200000000000000002000000000000000201174459False
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 science10101010000000000000000000000000000000001118339False
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, Metagenomics01100110000000000000000000000000000000001012137False
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.000000000000000000000000000010000000000000000False
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 families012121201212120000001200000000012000000000000000121243933702False
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, Phylogenomics612131361213130000000000000000130000000000000001313104519521False
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 networks17217217217200000000000000000000000200000000171216110370False
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, Genomics00100010000000000000000000000000000000001039354False
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 variation00000000000000000000000010000000000000000000False
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 assembly303330330000000000000000000000000000000033691127False
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 genomics06600660000000000000000000000000000000006667100294False
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, Metagenomics002000200000000000000000000000000000000020594False
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 analysis0111011100000000000000111000000000000000105852965False
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 analysis11111111000100100000000000000000000000001167735243False
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/iprscan500000000000000000000000000000000000000000000False
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.4iqtree2.3.4Phylogenetic analysis, Sequence analysisPhylogenetics11101110000000000000001010010000000000001168121598False
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 variation0111011100000000000000101000000000000000105057581False
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, Microbiology00100010000000000000000000000000000000001038868False
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.355555555000000000000000050040004000000005511711224275False
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 visualisationGenomics222222220000000000000020200000020000000022234618229False
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, Genomics011101110000000000000000100000000000000011911138False
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.200000000000000000000000000000000000000000000False
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 alignmentMapping10101010000000000000000000000000000000001119363False
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 assembly888088800000000000000001100000010000000088632022False
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 sequencingUp-to-datehttps://github.com/katholt/Kleborate/wikiMetagenomicskleborateiuchttps://github.com/katholt/Kleboratehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kleborate2.3.2kleborate2.3.2Multilocus sequence typing, Genome assembly, Virulence predictionPublic health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing00100010000000000000000010000000000000001038319False
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 annotationGenomics00110011000000000000000000000000000000001033594False
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, Metagenomics555555550000000000001010000000000000200055120933778False
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, Metagenomics1111111100000000000000111001000000001000112367185308False
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+galaxy0gawk11101110000000000000001010010000000000001148114683False
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.00111011100000000000000000000000000000000111821444False
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, Taxonomy1110111000000000000000000000000000000000113542527False
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, Metagenomics16661666000000000000000460000000000000006070316525False
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 epidemiology00100010000000000000000010000000000000000000False
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.00010001000000000000000000000000000000000112137False
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 epidemiology001000100000000000000000000000000000000010755False
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, Genomics0010001000000000000000000000000000000000119152False
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, Genetics111111110000000000000000000000000000000011101220344False
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 variation001000100000000000000000000000000000000010237False
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 phenotype0010001000000000000000000000000000000000109647False
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 ecologyUp-to-datehttp://lotus2.earlham.ac.uk/Metagenomicslotus2earlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus22.32lotus22.32Sequence feature detection, DNA barcodingMetagenomics, Taxonomy, Microbial ecology001000100000000000000000000000000000000010114936False
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 learning00100010000000000000000000000000000000000003False
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/maaslin20.99.12maaslin21.16.0Filtering, Standardisation and normalisation, VisualisationMetagenomics, Statistics and probability00100010000000000000000000000000000000001029188False
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.520mafft7.525Multiple sequence alignmentSequence analysis222222220001002000000010200200020000000022817143045False
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.7000000000000000000000000000000000000000000000False
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 analysis2222222200000000000000001000000000000000225545591False
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 motifs0010001000000000000000001000000000000000102167False
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 mutation222222220000000000000000200000000000000022279763False
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, Microbiology1111111100000000000000001000000000001000111182059False
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 probability2220222000000000000000020000000000000000224156078False
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 networks0010001000000000000000000000000000000000111029False
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 learning33333333000000000000000030000002000000003376899863False
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 assembly1111111110000000000000101001000100001000115489530False
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 assembly10111011000000000000000010000001000000001154475False
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 analysis0070007000000000000000000000000000000000702613610False
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 phenotype00000000000000000000000000000000000000000000False
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 biology2222222200000000000000000000000000000000102442483False
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 analysis00000000000000000000000000000000000000000000False
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 sequencing2122212200000000000000001000000000001000201924329False
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 families00100010000000000000000000000000000000001116184False
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 curation001000100000000000000010100000000000000011115636False
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 updateMetagenomicsmetagenomeseq_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, Sequencing1011101100000000000000001000000000000000116753False
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 molecules001000100000000000000000000000000000000010154181False
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, PhylogenomicsTo updatehttps://github.com/biobakery/MetaPhlAnMetagenomicsmetaphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaphlan4.0.6metaphlan4.1.1Nucleic acid sequence analysisMetagenomics, Phylogenomics12441244000000000000000040000000000000004449911069False
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, Metagenomics0660066000000000000000000000000000000000661042522False
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, Metagenomics01100110000000000000000000000000000000000000False
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 assembly0110011000000000000000001000000000000000111092206False
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 assembly11111111000000000000000010000000000000001117811938False
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, Sequencing00100010000000000000000010000000000000001021185False
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 analysis20222022000000000000000000000000000000002030842False
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 sequencing112011200000000000000000100000000000000021236100920False
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 antigens2222222200000000000000002000000000000000226359304False
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.902220222000000000000000020000000000000002032289021False
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, Phylogeny129129129129129129129129000300000000001280300000000000000012912914353302916False
mrbayesmrbayesA program for the Bayesian estimation of phylogeny.To updateSequence Analysismrbayesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/mrbayes1.0.2mrbayes3.2.700000000000000000000000100000000000000000000False
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 experiment11111111000000000000000000000000000000001118919958False
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.001100110000000000000000000000000000000001071726False
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 molecules001000100000000000000000000000000000000010253False
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.22.3Sequencing quality controlSequencing, Bioinformatics, Sequence analysis, Genomics1111111100000010000000111001000100000100118320162790False
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, Metagenomics00000000000000000000000000000000000000000000False
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-base00000000000000000000000000000000000000000000False
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 databases11101110000000000000000000000000000000001133844False
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 sites0120012000000000000000001000000000000000223836False
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.42.0nanoplot1.42.0Scatter plot plotting, Box-Whisker plot plottingGenomics111111110000000000000010100000010000000011219563235False
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 variation002200220000000000000000000000000000000022151074False
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.1python161616161616161660015001500000001615160000001600001600016154066365597False
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.0ncbi-fcs-gx0.5.0Sequence assembly validation, Sequence trimming, Sequence contamination filteringSequence analysis, Sequence assembly10101010000000000000000010000000000000000000False
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 science11111111000000000000000010000000000000001144825505False
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, Cladistics1122112200000000000000002001000100000000202104080False
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 assembly00100010000000000000000000000000000000001084268False
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.1Operation1011101100000000000000001000000000000000115142False
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 motifs0010001000000000000000000000000000000000112861False
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 detectionSequencing00000000000000000000000000000000000000000000False
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-base102110210000000000000000000000000000000010445False
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, Sequencing0101010010101000000000000000000000000000000000101050326251False
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 probability00110011000000000000000000000000000000000000False
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 molecules10101010000000000000000000000000000000001053774False
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 genomics0111011100010000000000000000000000000000102391333False
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.944444444000000000000000000000000000000004248517477False
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 analysis11111111000000000000000000000000000000001019165False
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 RNA011001100000000000000000100000000000100010742565False
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, Metagenomics00440044000000000000004000000000000000003382812False
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, Phylogenetics0111011100010000000000011000000000000000111041770False
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 sequencing065606560000000000000000600000000000000055451095False
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 sequencingTo updatehttps://github.com/picrust/picrust2/wikiMetagenomicspicrust2iuchttps://github.com/picrust/picrust2https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust22.5.1picrust22.5.2Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysisMetagenomics, Microbiology, Phylogenetics, Metagenomic sequencing077007700000000000000000000000000000000070881000False
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 analysisMetagenomics11101110000000000000001000000000000000001127822589False
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 primers001100110000000000000010000000000000000010822False
plasmidspadesplasmidspadesGenome assembler for assemblying plasmidTo updateAssemblyplasmidspadesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades1.1spades4.0.000000000000000100000000110000000000000000000False
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, Mapping00110011000000000000000010000000000000001024239False
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 analysis00110011100000000000100010000000000000000000False
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, Virology1111111110000000000000111001000100001000113233371445False
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.2python00000000000000000000000000000000000000000000False
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 genomicsUp-to-datehttps://gitlab.com/paulklemm_PHD/proteinorthoProteomicsproteinorthoiuchttps://gitlab.com/paulklemm_PHD/proteinorthohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/proteinortho6.3.1proteinortho6.3.1Sequence clustering, Sequence analysisComparative genomics0030003000000000000000001000000000000000332003320False
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, Sequencing11111111000000000000001010000000000000001035021123False
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, Workflows11111111000000000000000000000000000000001137711332False
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, Metatranscriptomics002200220000000000000000000000000000000022681909False
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, Metatranscriptomics0032320032320000000000000031010000000000000003131115528681False
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 management4441444100000000000000004001000100000000441328664470False
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 assembly111111110000001000000011100100010000000011356751567False
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 phenotype00000000000000000000000000000000000000000100False
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.000000000000000000000000000000000000000000000False
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 assembly11111111000000000000000010000000000000001130921353False
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/rasusa0.8.0rasusa2.0.000100010000000000000000000000000000000000000False
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 analysisPhylogenetics1111111100000010000000001000000000000000113836808False
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, Genomics101010100000000000000000100000000000000010713370False
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, Microbiology00100010000000000000000000000000000000000000False
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.0recentrifuge1.14.0Taxonomic classification, Expression analysis, Cross-assemblyMetagenomics, Microbial ecology, Metagenomic sequencing10111011000000000000001010000000000000001048331False
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.8001000100000000000000000000000000000000000016False
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, Mapping11111111000000000000000010000000000000001165612225False
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 handlingSequencing2222222222222222000000000000000000022000220000000022223206133498False
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, Transcriptomics21312131000000000000000210010001000000003396961937False
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.01010101000000000000000000000000000000000117173False
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.51010101000000000000000000000000000000000111140False
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 genomics00100010000000000000000010000000000000001061676False
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 assembly00610061000000000000000000000000000000006039542False
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 analysis0232023200000000000000005000000000000000301291964False
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 primers00100010000000000000000000000000000000000000False
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, Genomics001000100000000000000000000000000000000000012False
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, Genetics00000000000000000000000010000000000000000000False
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 assembly111111110000000000000010100000000000000011100841600False
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.20110011000000000000000001000000000000000111332489False
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, Sequencing0010001000000000000000000000000000000000106121False
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.600000000000000000000000010000000000000000000False
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, Genetics1110111000000000000000000000000000000000111331349False
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, Phylogenetics3333333300000020000000003000000000000000321372105708False
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, Metagenomics00100010000000000000000010000000000000001011False
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, Metagenomics11111111000100000000001010000000000000001137618183False
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.spadesrnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspadesSPAdesSt. 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 assembly999999990000001000000013800200030000000093354772953False
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 variation001000100000000000000000000000000000000010121278False
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.100000000000000000000000110000001000000000000False
srst2srst2Short Read Sequence Typing for Bacterial PathogensTo updateSequence Analysissrst2nmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/srst20.3.7srst20.2.000100010000000000000000010000000000000001022205False
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 epidemiology00100010000000000000000010000000000000001022205False
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.011111111000000000000001110000000000000001188912673False
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.300000000000000000000000010000000000000000000False
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-datePhylogenetics, 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 genetics001100110000000000000000000000000000000011592623False
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.0333333330000000000000000000000000000000030613False
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.044424442000000000000000000000000000000004025False
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.0444444440000000000000000000000000000000040567False
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.044444444000000000000000000000000000000004031202False
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.0333333330000000000000000000000000000000030973False
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.066666666000000000000000000000000000000006026114False
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.021212121212121210000000000000000000000000000000021043168False
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.012121212121212120000000000000000000000000000000012044False
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.033333333000000000000000000000000000000003026False
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.010101010101010100000000000000000000000000000000010048263False
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.017171717171717170000000000000000000000000000000017059213False
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.0333333330000000000000000000000000000000030620False
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.0111111111111111100000000000000000000000000000000110614False
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.033333333000000000000000000000000000000003040232False
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.01212121212121212000000000000000000000000000000001201237False
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.066666666000000000000000000000000000000006000False
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.0111111110000000000000000000000000000000010213False
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.000000000000000000000000000000000000000000000False
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.015151515151515150000000000000000000000000000000015011False
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.044444444000000000000000000000000000000004022172False
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.0888788870000000000000000000000000000000080816False
suite_qiime2_coreTo updateStatistics, Metagenomics, Sequence Analysisq2d2https://github.com/qiime2/galaxy-tools/tree/main/tool_collections/suite_qiime2_core00000000000000000000000000000000000000000000False
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.he540b0b02222222200000000000000000000000000000000201247087False
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 visualisationPhylogenomics00100010000000000000000010000000000000001131457False
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.000100010000000000000000010000000000000001126947False
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.919e8c6b001000100001000000000000000000000000000011708690False
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.1VisualisationMetagenomics111111110000000000000011100100000000100011180127426False
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 predictionUp-to-datehttps://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.2.1Antimicrobial resistance prediction1110111000000000000000000000000000000000111985161False
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.8.5.0tooldistillator0.8.5.0ParsingMicrobiology, Bioinformatics, Sequence analysis20222022000000000000000000000000000000000000False
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 elements55505550000000000000000000000000000000005584907False
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 sites1010101000000000000000000000000000000000115229False
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 analysis1111111100010000000000101001000000000000112334238699False
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.50555055500000000000000005000000000000000501478942False
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.0unicycler0.5.0Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assembly111111110000000000000001100100010000000011155865732False
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, Workflows1110111000000000000000101000000000000000111155005False
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.0requests011001100000000000000000000000000000000011791360False
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, Phylogenomics00200020000000000000000000000000000000002051060False
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 assembly10111011000000000000000010000000000000001120637False
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 assembly101010100000000000000000000100000000000010943164False
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 designVirologyUp-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 designVirology00100010000000000000000000000000000000000000False
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 science303030300000000000000000300000000000000033742020False
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 assembly222222222000000000000022000000000000000020208325420False
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 assembly1110111010010000000000100000000000000000112554741False
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.0+galaxy0biopython1.70Sequence annotation, Sequence clustering, Sequence cluster visualisationMetagenomics, Virology, Microbial ecology00330033000000000000000000000000000000000000False
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 analysis8888888800000000000000088000000800000000881828507False
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, Sequencing0011001100000000000000001000000000000000111161660False
- -
\ No newline at end of file diff --git a/results/microgalaxy/tools.tsv b/results/microgalaxy/tools.tsv deleted file mode 100644 index 3d0c4ff3..00000000 --- a/results/microgalaxy/tools.tsv +++ /dev/null @@ -1,291 +0,0 @@ -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 -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 0 0 0 5 4 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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.18 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 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 Up-to-date 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.7 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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 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 0 0 0 1 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 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 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 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 0 0 0 0 0 0 0 0 1 1 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 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 0 2 2 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 0 0 0 1 1 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.06 bbmap 39.06 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 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 2.9 bracken 2.9 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 To update 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.5.0 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 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 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 0 1 1 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 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 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.2 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 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 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 0.1.12 clair3 1.0.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 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 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 3 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 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 0 0 0 1 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 0 0 0 1 1 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 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 -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 0 0 0 5 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 To update 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.8 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 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 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 0 0 10 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 10 10 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 0 0 0 2 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 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 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 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 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 To update 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.3.5 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 0 0 0 5 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 3 0 0 0 3 1 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 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 0 107 107 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 0 0 0 7 7 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 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 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 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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.3 flye 2.9.4 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 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 1 68 1102 True False True -freyja freyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variants lineage abundances estimation freyja freyja 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 2 0 4 0 2 0 4 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 0 0 0 0 0 0 0 4 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 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 0 0 0 5 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 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 0 0 1 0 5 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 5 5 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 4 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 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 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 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 0 12 12 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 12 13 13 6 12 13 13 0 0 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 0 13 13 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 0 0 2 0 0 0 0 0 0 0 0 17 12 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 0 0 0 1 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 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 0 0 0 3 3 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 0 0 0 6 6 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 0 0 0 2 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 1 1 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 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.4 iqtree 2.3.4 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 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 5 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 5 5 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 0 0 2 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 8 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 Up-to-date 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 2.3.2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 5 5 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 1 6 6 6 1 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 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 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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 Up-to-date 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.32 Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0.99.12 maaslin2 1.16.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 0 0 0 1 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.520 mafft 7.525 Multiple sequence alignment Sequence analysis 2 2 2 2 2 2 2 2 0 0 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 0 2 2 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 3 3 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 1 0 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 1 0 0 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 0 7 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 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 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 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 To update 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.0.6 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 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 0 0 0 6 6 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 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 0 129 129 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 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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.22.3 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 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 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 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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.42.0 nanoplot 1.42.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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 6 0 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 0 16 15 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.0 ncbi-fcs-gx 0.5.0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 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 0 0 0 1 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.1 Operation 1 0 1 1 1 0 1 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 1 1 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 0 0 0 1 1 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 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 0 0 0 1 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 0 0 0 10 10 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 4 2 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 4 4 0 0 4 4 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 0 0 0 3 3 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 0 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 0 1 1 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 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 To update 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.1 picrust2 2.5.2 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 0 0 0 7 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 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 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 0 1 1 0 0 1 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 1 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 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 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 1 0 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 0 1 1 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 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 Up-to-date 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.1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 0 0 31 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 31 1155 28681 True False True -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 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 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 0 1 1 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0.8.0 rasusa 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 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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.0 recentrifuge 1.14.0 Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 0 22 22 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 6 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 3 2 0 2 3 2 0 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 0 3 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 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 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 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 0 0 0 1 1 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 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 0 3 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 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 0 1 1 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 rnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspades 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 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 0 9 3 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 1 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 0 0 0 3 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 0 0 0 4 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 0 0 0 4 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 0 0 0 4 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 0 0 0 3 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 0 0 0 6 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 0 0 0 21 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 0 0 0 12 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 0 0 0 3 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 0 0 0 10 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 0 0 0 17 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 0 0 0 3 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 0 0 0 11 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 0 0 0 3 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 0 0 0 12 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 0 0 0 6 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 0 0 0 1 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 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 0 0 0 15 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 0 0 0 4 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 0 0 0 8 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 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 Up-to-date 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.2.1 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 0 0 0 1 1 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.8.5.0 tooldistillator 0.8.5.0 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 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 0 0 0 5 5 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 0 0 0 1 1 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 0 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 0 1 1 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 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.0 unicycler 0.5.0 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 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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 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 0 0 2 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 1 0 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 0 1 1 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.0+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 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 0 0 8 8 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 8 8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 116 1660 True False True diff --git a/results/microgalaxy/tools_filtered_by_ts_categories.tsv b/results/microgalaxy/tools_filtered_by_ts_categories.tsv deleted file mode 100644 index 820c3682..00000000 --- a/results/microgalaxy/tools_filtered_by_ts_categories.tsv +++ /dev/null @@ -1,806 +0,0 @@ -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 -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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 2 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 0 0 0 5 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 2 2 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 0 0 0 5 4 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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.18 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 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 Up-to-date 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.7 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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.3 adapterremoval 2.3.3 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 0 0 0 1 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 0 0 0 4 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 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.6 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 0 0 0 19 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 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 0 0 0 1 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 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 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 To update 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 Annotation 1 1 1 1 1 1 1 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 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 4 65 True False 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 123 8175 True False True -assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. To update 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 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 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 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 -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 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 685 11245 True False 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 516 8864 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/main/tools/b2btools 3.0.5+galaxy0 b2btools 3.0.6 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 0 0 0 1 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 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 1 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 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 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 2 4 0 4 2 4 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 4 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 0 0 0 1 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 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 0 2 2 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 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 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 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 Sequence Analysis barrnap iuc 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 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 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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.06 bbmap 39.06 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 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 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 0 0 0 7 7 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 0 1 1 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 0 0 True False True -biscot biscot Bionano scaffolding correction tool To update 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 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 0 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 0 4 4 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 2.9 bracken 2.9 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 0 10 567 True False 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 -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 0 0 0 5 5 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 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 To update 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.5.0 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 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 0 0 0 1 0 0 0 True False False -cami_amber 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.4 cami-amber 2.0.4 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 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 To update 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 2.10.0 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 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 11 9 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 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 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 0 1 1 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 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 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 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 0 0 0 3 0 19 174 True False False -charts charts Enables advanced visualization options in Galaxy Charts To update 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 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.2 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 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 1 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 0 0 0 1 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 0.1.12 clair3 1.0.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 1 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 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 0 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 0 1 1 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 0 0 0 1 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 0 0 0 2 2 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 3 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 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 0 0 0 1 1 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 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 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 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 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 0 0 0 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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 -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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 5 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 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 0 0 0 1 1 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 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 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 To update 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.8 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 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 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 0 0 10 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 10 10 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 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 6 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 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 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 0 0 0 1 1 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 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 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 0 0 0 1 1 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 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 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 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 0 0 0 1 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 0 0 0 3 3 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 0 0 0 1 1 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 0 0 0 1 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 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 0 3 3 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 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 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 0 0 0 1 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 To update 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.3.5 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 0 0 0 5 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 iuc https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 1.0.0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 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 0 0 3 0 0 0 3 1 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 0 0 0 1 1 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 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 0 107 107 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 0 0 0 7 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 0 0 0 7 7 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 1 1 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 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+galaxy0 falco 1.2.2 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 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 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 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 0 0 0 1 1 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 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 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 0 0 0 1 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.11.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 1 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 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 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 0 0 0 1 1 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 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 2 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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.3 flye 2.9.4 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 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 1 68 1102 True False True -freyja freyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variants lineage abundances estimation freyja freyja 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 2 0 4 0 2 0 4 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 0 0 0 0 0 0 0 4 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 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 0 0 0 5 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 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 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 0 0 0 8 8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 2 2 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 0 0 0 1 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 0 0 0 1 1 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 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 0 0 0 1 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 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 0 1 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 0 0 1 0 5 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 5 5 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 4 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 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 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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+galaxy1 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 0 0 0 1 1 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 0 0 True False 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 0 0 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 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 0 0 0 1 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 0 0 0 2 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1953 44240 True False 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 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 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 1 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 0 0 0 1 1 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 0 0 0 1 1 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_hictadclassifier, hicexplorer_hictraintadclassifier, hicexplorer_hictransform, hicexplorer_hicvalidatelocations HiCExplorer: Set of programs to process, analyze and visualize Hi-C data. To update 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.2 hicexplorer 3.7.4 0 5 40 4 0 5 40 4 0 0 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 0 36 33 1085 66005 True False False -hicstuff hicstuff_pipeline 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 0 0 True False False -hifiasm hifiasm A fast haplotype-resolved de novo assembler To update https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm 0.19.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 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 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 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 0 12 12 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 5 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 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 0 0 0 1 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 0 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 0 1 1 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 12 13 13 6 12 13 13 0 0 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 0 13 13 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.1.8 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 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 0 0 2 0 0 0 0 0 0 0 0 17 12 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 0 0 0 1 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 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 0 0 0 3 3 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 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 0 0 0 1 1 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 0 0 0 6 6 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 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 0 0 0 1 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 0 0 0 2 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 0 0 0 1 1 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 1 1 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 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.4 iqtree 2.3.4 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 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 5 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 5 5 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 0 0 2 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2346 18229 True False True -jbrowse2 jbrowse2 JBrowse2 Genome Browser integrated as a Galaxy Tool jbrowse2 jbrowse2 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.11.1 jbrowse2 2.12.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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.0b4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 8 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 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 Up-to-date 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 2.3.2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 5 5 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 1 6 6 6 1 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 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 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 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 1548 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 0 0 0 5 5 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 To update 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 1.9.2.3 locarna 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 0 0 0 1 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 Up-to-date 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.32 Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0.99.12 maaslin2 1.16.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 0 0 0 1 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 0 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 0 9 9 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.520 mafft 7.525 Multiple sequence alignment Sequence analysis 2 2 2 2 2 2 2 2 0 0 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 0 2 2 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 3 3 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 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 1 0 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 1 0 0 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 0 7 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 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 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 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 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 To update 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.0.6 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 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 0 0 0 6 6 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 103 3966 True False 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 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 0 0 True False 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 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 2 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 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 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 264 3266 True False False -morpheus morpheus Morpheus MS Search Application To update Proteomics morpheus galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus 2.255.0 morpheus 288 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 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 0 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 0 129 129 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 0 0 0 1 1 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 0 0 0 2 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 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.22.3 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 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 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 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 0 0 0 1 1 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 0 0 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 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 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 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 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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.42.0 nanoplot 1.42.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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 0 0 0 1 1 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 6 0 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 0 16 15 4066 365597 True False True -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 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 -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.0 ncbi-fcs-gx 0.5.0 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 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 0 0 0 1 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 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.1 Operation 1 0 1 1 1 0 1 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 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 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 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 0 0 0 1 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 0 0 0 10 10 503 26251 True False True -ocean argo_getdata 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 2 2 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 39 2654 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 141 0 8 34 141 0 0 0 0 0 0 0 0 0 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 886 105432 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 0 0 0 135 134 916 105743 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 0 0 0 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 239 1333 True False True -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 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 3 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 0 0 0 1 1 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 0 0 0 4 2 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 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 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 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 0 0 0 4 4 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 4 4 0 0 4 4 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 0 0 0 3 3 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 0 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 0 1 1 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 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 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 To update 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.1 picrust2 2.5.2 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 0 0 0 7 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 1 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 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 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.3 galaxy-ml 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 1 1 0 0 1 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 1 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 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 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 0 0 True False True -progressivemauve progressivemauve, xmfa2gff3 Mauve/ProgressiveMauve Multiple Sequence Aligner To update 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 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 0 2 2 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 1 0 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 0 1 1 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 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.5 prot-scriber 0.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 0 0 0 1 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 6 6 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 0 0 0 1 1 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 Up-to-date 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.1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 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 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 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 4 6 0 0 4 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 33 2509 True False 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.0 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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.2 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 0 0 0 1 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 0 0 0 2 2 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 0 0 31 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 31 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 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 0 0 True False 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 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.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 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 0 0 0 1 1 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 0 0 0 1 1 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 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 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 0 1 1 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 1 1 0 0 1 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 1 1 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 0 1 1 1 0 1 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 1 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 0.8.0 rasusa 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 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 0 1 1 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 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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.0 recentrifuge 1.14.0 Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 7 7 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 0 3 3 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 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 6 1074 True False 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 0 0 0 1 1 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.2.3 rnaquast 2.2.3 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 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 1 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 0 0 0 1 1 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 0 0 0 6 6 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 4 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 0 22 22 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 9 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 0 0 0 6 6 766 51978 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 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 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 0 0 0 5 5 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 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 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 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 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 6 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 3 2 0 2 3 2 0 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 0 3 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 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 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 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 0 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 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 0 0 0 1 1 0 271 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 0 0 1 0 0 0 0 0 0 0 0 1 1 66 1543 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 1 0 0 1 1 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 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 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 0 0 0 2 2 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 0 0 0 1 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 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 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 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 0 0 0 1 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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.5.3 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 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.3.3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 3 2 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 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 0 1 1 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 rnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspades 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 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 0 9 3 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 34 446 True False 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 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 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 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 0 0 0 1 1 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 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 0 0 0 1 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 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 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 0 0 0 7 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 0 13 13 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 0 0 0 12 12 238 7292 True False 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 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 5 5 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 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 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 0 0 0 1 1 59 2623 True False True -structureharvester structureharvester for parsing STRUCTURE outputs and for performing the Evanno method Up-to-date 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 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 3 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 0 0 0 4 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 0 0 0 4 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 0 0 0 4 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 0 0 0 3 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 0 0 0 6 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 0 0 0 21 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 0 0 0 12 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 0 0 0 3 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 0 0 0 10 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 0 0 0 17 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 0 0 0 3 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 0 0 0 11 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 0 0 0 3 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 0 0 0 12 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 0 0 0 6 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 0 0 0 1 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 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 0 0 0 15 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 0 0 0 4 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 0 0 0 8 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 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 0 0 0 2 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 1 37 713 True False False -tasmanian_mismatch tasmanian_mismatch Analysis of positional mismatches Up-to-date Sequence Analysis tasmanian_mismatch iuc https://github.com/nebiolabs/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 0 0 True False 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 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 Up-to-date 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.2.1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 4 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.8.5.0 tooldistillator 0.8.5.0 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 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 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 1 1 1 0 1 1 1 0 0 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 0 1 1 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 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 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 0 0 0 5 5 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 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 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 2 2 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 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 0 0 5 True False 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/main/tools/ucsc_blat 377 ucsc-blat 466 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 5 5 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.0 unicycler 0.5.0 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 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.5 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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 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 0 0 2 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 1 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 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 0 0 0 3 3 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 0 0 0 21 21 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 0 0 0 4 4 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.0+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 0 0 True False True -virheat virheat generates a heatmap of allele frequencies from vcf files virheat virheat 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 virheat 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 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 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 8 8 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 8 8 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 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 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 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 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 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.15.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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 6 2 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 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 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 0 0 0 1 0 64 344 True False 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 0 0 True False False diff --git a/results/microgalaxy/tools_wordcloud.png b/results/microgalaxy/tools_wordcloud.png deleted file mode 100644 index 9efeb0fd..00000000 Binary files a/results/microgalaxy/tools_wordcloud.png and /dev/null differ diff --git a/results/microgalaxy/tutorials.html b/results/microgalaxy/tutorials.html deleted file mode 100644 index 08517b4b..00000000 --- a/results/microgalaxy/tutorials.html +++ /dev/null @@ -1,1215 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ExpandTopicTitleLinkEDAM topicEDAM operationCreationLast modificationVersionTutorialSlidesVideoWorkflowsToolsServers with precise tool versionsServers with tool but different versionsFeedback numberFeedback mean noteVisitorsPage viewsVisit durationVideo views
AssemblyMaking sense of a newly assembled genomehttps://training.galaxyproject.org//topics/assembly/tutorials/ecoli_comparison/tutorial.htmlSequence assembly, Genomics, MicrobiologyGenome visualisation, Sequence alignment, Read mapping, Sequence visualisation, Mapping2018-06-142024-03-1186TrueFalseFalseTrueCut1, tp_replace_in_line, mergeCols1, tp_replace_in_column, fasta_filter_by_length, Grep1, cat1, circos_aln_to_links, jbrowse, fasta_compute_length, collapse_dataset, random_lines1, bedtools_sortbed, lastz_wrapper_2, addValue, circos, join1, Filter1, bedtools_intersectbed, bedtools_complementbed, upload1, tp_sed_tool, tp_cat, datamash_ops, tp_sort_header_tool, circos_interval_to_tiles, tp_grep_tool12.05828119353.0333330
AssemblyAssembly of metagenomic sequencing datahttps://training.galaxyproject.org//topics/assembly/tutorials/metagenomics-assembly/tutorial.htmlMetagenomics, Sequence assemblySequence composition calculation, Genome assembly, Visualisation, Primer removal, Sequence assembly visualisation, Sequence file editing, Read mapping, Statistical calculation, Data handling, Sequence contamination filtering, Local alignment, Sequence alignment analysis, Variant calling, Sequencing quality control, Read pre-processing, Sequence assembly validation, Formatting, Sequence trimming2024-06-242024-06-240TrueFalseFalseTruefilter_tabular, bandage_image, metaspades, megahit, quast, cutadapt, tp_cat, ngsutils_bam_filter, megahit_contig2fastg, random_lines1, bamtools, bowtie2, bandage_info, collection_column_join, coverm_contig, seqtk_subseq, fastqc, bg_uniqUseGalaxy.cz, UseGalaxy.eu0110.0000000
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, MicrobiologySequence assembly visualisation, Sequence composition calculation, Sequence contamination filtering, Genome assembly, Statistical calculation, Sequencing quality control, Visualisation, Sequence assembly validation2021-03-242024-03-1128TrueFalseFalseTruebandage_image, upload1, quast, bandage_info, fastqc, fastp, shovillUseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr, UseGalaxy.org (Main)Galaxy@AuBi, GalaxyTrakr, UseGalaxy.no84.5611598903.7333330
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 ResistanceDe-novo assembly, Sequence composition calculation, Genome assembly, Sequencing error detection, Visualisation, Sequencing quality control, Mapping assembly, Sequence assembly visualisation, Sequence assembly validation, Cross-assembly, Box-Whisker plot plotting, Scatter plot plotting, Filtering, Read mapping, Statistical calculation, Sequence alignment, Sequence contamination filtering2021-03-242024-03-1335TrueFalseFalseTrueflye, nanoplot, bandage_image, polypolish, upload1, quast, porechop, CONVERTER_bz2_to_uncompressed, bwa_mem2, filtlong, fastqc, fastpUseGalaxy.euUseGalaxy.cz24.0635397773.4166670
AssemblyUnicycler Assemblyhttps://training.galaxyproject.org//topics/assembly/tutorials/unicycler-assembly/tutorial.htmlSequence assembly, Genomics, MicrobiologySequence composition calculation, Genome assembly, Validation, Coding region prediction, Sequencing quality control, Visualisation, Sequence assembly validation, Statistical calculation, Gene prediction, Aggregation, Genome annotation2017-10-112024-03-1161TrueTrueFalseTruequast, prokka, unicycler, multiqc, fastqcUseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.auGalaxyTrakr, HyPhy HIV NGS Tools, MISSISSIPPI, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no83.75199491655524894.5666670
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 ecologyStatistical calculation, Cross-assembly, Taxonomic classification, Expression analysis2024-03-042024-04-045TrueFalseFalseTruekraken2, recentrifuge, upload1, est_abundanceUseGalaxy.eu, UseGalaxy.frGalaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.org (Main)15.01652264.8666670
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-162023-02-1519TrueFalseFalseTrueraxml, interactive_tool_rstudio, upload1UseGalaxy.euUseGalaxy.fr, UseGalaxy.org (Main)64.333333121118572.2666670
EvolutionIdentifying tuberculosis transmission links: from SNPs to transmission clustershttps://training.galaxyproject.org//topics/evolution/tutorials/mtb_transmission/tutorial.htmlGenomics, Microbiology, Infectious disease, DNA polymorphismAntimicrobial resistance prediction, Phylogenetic tree generation, Phylogenetic tree visualisation, Variant calling2022-03-162024-03-1215TrueFalseFalseTruesnippy, tb_variant_filter, tp_replace_in_line, trimmomatic, bcftools_consensus, snp_sites, tp_sed_tool, addName, tp_cat, upload1, collapse_dataset, Grep1, __MERGE_COLLECTION__, tp_easyjoin_tool, tb_profiler_profile, samtools_view, tp_grep_tool, snp_distsUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main)74.0137722113.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 annotation, Coding region prediction, Gene prediction, Genome visualisation2018-03-062024-05-2943TrueTrueTrueTrueprokka, jbrowseUseGalaxy.eu, UseGalaxy.org (Main)Galaxy@AuBi, GalaxyTrakr, MISSISSIPPI, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au173.764706199934155601754.3166670
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 elementsStructural variation detection, Genome assembly, Nucleic acid feature detection, Protein feature detection, Scaffolding, Multilocus sequence typing, Sequence motif recognition, Genome visualisation, Genome annotation2024-02-012024-03-138TrueFalseFalseTruetp_tail_tool, upload1, bakta, isescan, Grouping1, tp_replace_in_column, tbl2gff3, plasmidfinder, integron_finder, jbrowseGalaxy@AuBi, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr11.0123716302.4833330
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 annotation, Genome visualisation, Read mapping2024-01-232024-03-139TrueFalseFalseTrueupload1, staramr_search, bakta, Grep1, bowtie2, tbl2gff3, jbrowseUseGalaxy.cz, UseGalaxy.eu, UseGalaxy.frGalaxy@AuBi072610613.0666670
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-05-2940TrueTrueTrueTrueiframe, create_or_update, list_organism, create_account, jbrowseUseGalaxy.cz, UseGalaxy.eu, UseGalaxy.no54.6175713847553395.0166670
Genome AnnotationComparative gene analysis in unannotated genomeshttps://training.galaxyproject.org//topics/genome-annotation/tutorials/gene-centric/tutorial.htmlGenomics, Gene and protein families, Sequence analysis, PhylogenyDe-novo assembly, Sequence alignment analysis, Multiple sequence alignment, Coding region prediction, Phylogenetic tree generation, Transcriptome assembly, Database search2022-09-082024-03-1830TrueFalseFalseTrueAdd_a_column1, gops_intersect_1, Cut1, orfipy, bg_diamond_view, tp_split_on_column, bg_diamond, tab2fasta, rbc_mafft, collapse_dataset, cat1, regexColumn1, join1, rapidnj, Filter1, bg_diamond_makedbUseGalaxy.eu, UseGalaxy.org (Main)UseGalaxy.cz091013953.1166670
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, Read pre-processing, Sequence trimming2019-07-022024-03-1552TrueTrueFalseTrueAdd_a_column1, Cut1, bowtie_wrapper, transit_gumbel, cutadapt, gff_to_prot, tp_sort_header_tool, __EXTRACT_DATASET__, deeptools_bam_coverage, tp_easyjoin_tool, bg_find_subsequences, Filter1UseGalaxy.noUseGalaxy.cz, UseGalaxy.eu44.5199067655455734.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 annotation, Coding region prediction, Gene prediction, Genome visualisation2018-03-062024-05-2943TrueTrueTrueTrueprokka, jbrowseUseGalaxy.eu, UseGalaxy.org (Main)Galaxy@AuBi, GalaxyTrakr, MISSISSIPPI, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au173.764706199934155601764.3166670
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, Phylogenetic tree generation, Phylogenetic tree visualisation, Variant calling2018-02-262024-03-1436TrueFalseFalseTruesnippy, jbrowseUseGalaxy.eu, UseGalaxy.org (Main)GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au124.41666711631196481.9833330
AssemblyMaking sense of a newly assembled genomehttps://training.galaxyproject.org//topics/assembly/tutorials/ecoli_comparison/tutorial.htmlSequence assembly, Genomics, MicrobiologyGenome visualisation, Sequence alignment, Read mapping, Sequence visualisation, Mapping2018-06-142024-03-1186TrueFalseFalseTrueCut1, tp_replace_in_line, mergeCols1, tp_replace_in_column, fasta_filter_by_length, Grep1, cat1, circos_aln_to_links, jbrowse, fasta_compute_length, collapse_dataset, random_lines1, bedtools_sortbed, lastz_wrapper_2, addValue, circos, join1, Filter1, bedtools_intersectbed, bedtools_complementbed, upload1, tp_sed_tool, tp_cat, datamash_ops, tp_sort_header_tool, circos_interval_to_tiles, tp_grep_tool12.05828119353.0333330
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 ResistanceDe-novo assembly, Sequence composition calculation, Genome assembly, Sequencing error detection, Visualisation, Sequencing quality control, Mapping assembly, Sequence assembly visualisation, Sequence assembly validation, Cross-assembly, Box-Whisker plot plotting, Scatter plot plotting, Filtering, Read mapping, Statistical calculation, Sequence alignment, Sequence contamination filtering2021-03-242024-03-1335TrueFalseFalseTrueflye, nanoplot, bandage_image, polypolish, upload1, quast, porechop, CONVERTER_bz2_to_uncompressed, bwa_mem2, filtlong, fastqc, fastpUseGalaxy.euUseGalaxy.cz24.0635397773.4166670
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 elementsStructural variation detection, Genome assembly, Nucleic acid feature detection, Protein feature detection, Scaffolding, Multilocus sequence typing, Sequence motif recognition, Genome visualisation, Genome annotation2024-02-012024-03-138TrueFalseFalseTruetp_tail_tool, upload1, bakta, isescan, Grouping1, tp_replace_in_column, tbl2gff3, plasmidfinder, integron_finder, jbrowseGalaxy@AuBi, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr11.0123716302.4833330
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 annotation, Genome visualisation, Read mapping2024-01-232024-03-139TrueFalseFalseTrueupload1, staramr_search, bakta, Grep1, bowtie2, tbl2gff3, jbrowseUseGalaxy.cz, UseGalaxy.eu, UseGalaxy.frGalaxy@AuBi072610613.0666670
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-05-2940TrueTrueTrueTrueiframe, create_or_update, list_organism, create_account, jbrowseUseGalaxy.cz, UseGalaxy.eu, UseGalaxy.no54.6175713847553405.0166670
MicrobiomeAnalyses of metagenomics data - The global picturehttps://training.galaxyproject.org//topics/microbiome/tutorials/general-tutorial/tutorial.htmlMetagenomics, Microbial ecology, Taxonomy, Sequence analysisSequence read processing, Sequencing quality control, Visualisation, Taxonomic classification, Phylogenetic analysis, DNA barcoding, Sequence clustering2017-06-222024-03-144TrueFalseFalseTruemothur_summary_seqs, mothur_classify_seqs, humann2_regroup_table, krona-text, mothur_pre_cluster, mothur_align_seqs, mothur_make_group, mothur_unique_seqs, humann2_renorm_table, metaphlan2, metaphlan2krona, mothur_merge_files, mothur_make_biom, mothur_make_shared, mothur_screen_seqs, mothur_count_seqs, mothur_cluster_split, mothur_classify_otu, mothur_filter_seqs, taxonomy_krona_chart, humann2UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au164.0625222529842.6500000
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 analysisPhylogenetic tree reconstruction, Sequence composition calculation, Base-calling, Genome assembly, Phylogenetic tree generation (from molecular sequences), Validation, Visualisation, Sequence assembly visualisation, Multilocus sequence typing, Scatter plot plotting, Statistical calculation, Data handling, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Pairwise sequence alignment, Sequence contamination filtering, De-novo assembly, Sequence alignment analysis, Variant calling, Mapping, Sequencing quality control, Phylogenetic tree generation, Mapping assembly, Box-Whisker plot plotting, Cross-assembly, Taxonomic classification, Antimicrobial resistance prediction, Multiple sequence alignment, Sequence assembly, Aggregation, Phylogenetic tree analysis2023-01-262024-06-1918TrueFalseFalseTruenanoplot, bandage_image, Cut1, CONVERTER_gz_to_uncompressed, bcftools_consensus, samtools_fastx, Grouping1, tp_replace_in_column, Grep1, __BUILD_LIST__, tp_find_and_replace, regex1, clustalw, fastp, tp_sorted_uniq, collection_element_identifiers, Paste1, flye, Add_a_column1, medaka_consensus_pipeline, Count1, minimap2, table_compute, tp_split_on_column, bamtools_split_mapped, clair3, kraken2, collapse_dataset, __FILTER_EMPTY_DATASETS__, compose_text_param, samtools_depth, snpSift_extractFields, regexColumn1, fastqc, abricate, newick_display, krakentools_extract_kraken_reads, bcftools_norm, barchart_gnuplot, Remove beginning1, samtools_coverage, split_file_to_collection, porechop, tp_multijoin_tool, mlst, tp_head_tool, multiqc, collection_column_join, fasta_merge_files_and_filter_unique_sequences, param_value_from_file, add_line_to_file, krakentools_kreport2krona, bedtools_getfastabed, fasttree, tab2fasta, ggplot2_heatmap, snpSift_filter, __FILTER_FAILED_DATASETS__, taxonomy_krona_chart, fasta2tab, tp_cut_toolUseGalaxy.eu15.0125918842.8000000
MicrobiomeTaxonomic Profiling and Visualization of Metagenomic Datahttps://training.galaxyproject.org//topics/microbiome/tutorials/taxonomic-profiling/tutorial.htmlMetagenomics, Microbial ecology, Taxonomy, Sequence analysisTaxonomic classification, Aggregation, Nucleic acid sequence analysis, Statistical calculation, Visualisation, Phylogenetic tree analysis2023-05-032024-05-294TrueFalseFalseTrueinteractive_tool_pavian, interactive_tool_phinch, est_abundance, kraken2, metaphlan, kraken_biom, taxonomy_krona_chart, __UNZIP_COLLECTION__, krakentools_kreport2kronaUseGalaxy.euUseGalaxy.org.au34.333333267336801.9000000
MicrobiomeAssembly of metagenomic sequencing datahttps://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-assembly/tutorial.htmlMetagenomics, Sequence assemblySequence composition calculation, Genome assembly, Visualisation, Primer removal, Sequence assembly visualisation, Sequence file editing, Read mapping, Statistical calculation, Data handling, Sequence contamination filtering, Local alignment, Sequence alignment analysis, Variant calling, Sequencing quality control, Read pre-processing, Sequence assembly validation, Formatting, Sequence trimming2022-12-052024-05-294TrueFalseFalseTruefilter_tabular, bandage_image, metaspades, megahit, quast, cutadapt, tp_cat, ngsutils_bam_filter, megahit_contig2fastg, random_lines1, bamtools, bowtie2, bandage_info, collection_column_join, coverm_contig, seqtk_subseq, fastqc, bg_uniqUseGalaxy.cz, UseGalaxy.eu0110015432.6000000
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, Genome assembly, Mapping assembly, Sequence assembly visualisation, Box-Whisker plot plotting, Scatter plot plotting, Aggregation, Sequence analysis, Pairwise sequence alignment2019-06-252024-05-294TrueFalseFalseTruenanoplot, bandage_image, racon, staramr_search, PlasFlow, gfa_to_fa, unicycler, miniasm, minimap2UseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au105.090214194.0500000
Microbiome16S Microbial analysis with Nanopore datahttps://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysisTaxonomic classification, Sequence composition calculation, Statistical calculation, Validation, Sequencing quality control, Visualisation, Sequence contamination filtering2020-11-242024-03-214TrueFalseFalseTruetp_replace_in_line, kraken2, Remove beginning1, porechop, multiqc, datamash_reverse, taxonomy_krona_chart, fastqc, fastpUseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.auGalaxyTrakr, UseGalaxy.cz134.692308183526172.9000000
MicrobiomeMetatranscriptomics analysis using microbiome RNA-seq datahttps://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics/tutorial.htmlMetatranscriptomics, Microbial ecology, Taxonomy, Function analysis, Sequence analysisSequence composition calculation, Phylogenetic tree visualisation, Validation, Phylogenetic inference, Primer removal, Visualisation, Species frequency estimation, Statistical calculation, Phylogenetic analysis, Sequence similarity search, Sequence alignment analysis, Sequence comparison, Sequencing quality control, Read pre-processing, Phylogenetic tree editing, Taxonomic classification, Conversion, Nucleic acid sequence analysis, Phylogenetic tree analysis, Sequence trimming2019-11-212024-05-294TrueTrueFalseTruegraphlan_annotate, Cut1, humann_split_stratified_table, bg_sortmerna, Grep1, tp_find_and_replace, graphlan, humann_renorm_table, humann, metaphlan, humann_rename_table, fastqc, multiqc, combine_metaphlan2_humann2, fastq_paired_end_interlacer, cutadapt, export2graphlan, humann_regroup_table, taxonomy_krona_chart, humann_unpack_pathwaysUseGalaxy.org (Main)UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au64.5198606755356004.3000000
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 analysisSequence composition calculation, Phylogenetic tree visualisation, Validation, Phylogenetic inference, Primer removal, Visualisation, Species frequency estimation, Statistical calculation, Phylogenetic analysis, Sequence similarity search, Sequence alignment analysis, Sequence comparison, Sequencing quality control, Read pre-processing, Phylogenetic tree editing, Taxonomic classification, Conversion, Nucleic acid sequence analysis, Phylogenetic tree analysis, Sequence trimming2020-02-132024-05-294TrueFalseFalseTruegraphlan_annotate, Cut1, humann_split_stratified_table, bg_sortmerna, Grep1, tp_find_and_replace, graphlan, humann_renorm_table, humann, metaphlan, humann_rename_table, fastqc, multiqc, combine_metaphlan2_humann2, fastq_paired_end_interlacer, cutadapt, export2graphlan, humann_regroup_table, taxonomy_krona_chart, humann_unpack_pathwaysUseGalaxy.org (Main)UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au15.01842362.0000000
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 analysisTaxonomic classification, Sequence composition calculation, Aggregation, Statistical calculation, Sequencing quality control, Visualisation, Sequence contamination filtering2022-09-292024-05-294TrueFalseFalseTruekraken2, porechop, taxonomy_krona_chart, fastqc, fastp, Filter1, krakentools_kreport2kronaGalaxyTrakr, UseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.auUseGalaxy.cz34.66666796915703.0000000
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 analysisVariant calling, DNA barcoding, Deposition, Visualisation, Analysis2024-06-052024-06-179TrueFalseFalseTruetp_replace_in_line, dada2_filterAndTrim, dada2_plotQualityProfile, Grouping1, tp_replace_in_column, cat1, interactive_tool_phyloseq, collection_element_identifiers, Add_a_column1, dada2_mergePairs, dada2_seqCounts, __UNZIP_COLLECTION__, __SORTLIST__, dada2_dada, dada2_makeSequenceTable, phyloseq_from_dada2, tp_head_tool, dada2_removeBimeraDenovo, dada2_learnErrors, dada2_assignTaxonomyAddspeciesUseGalaxy.eu, UseGalaxy.fr01041291.4833330
MicrobiomeQIIME 2 Cancer Microbiome Interventionhttps://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysis2024-02-122024-03-146externalFalseFalseFalseUseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr15.0831521.2333330
MicrobiomeBinning of metagenomic sequencing datahttps://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-binning/tutorial.htmlMetagenomics, Sequence assemblySequence composition calculation, Genome assembly, Statistical calculation, Validation, Sequencing quality control, Sequence assembly validation2023-12-052024-03-144TrueFalseFalseFalsecheckm_lineage_wf, megahitGalaxyTrakr, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr0113413671.5166670
MicrobiomeQIIME 2 Moving Pictureshttps://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysis2024-03-142024-03-142externalFalseFalseFalseUseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr15.072943.4166670
Microbiome16S Microbial Analysis with mothur (short)https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysisPhylogenetic tree reconstruction, Sequence read processing, Sequencing quality control, Visualisation, Phylogenetic tree generation, Taxonomic classification, Phylogenetic analysis, DNA barcoding, Sequence clustering, Phylogenetic tree analysis2019-05-132024-05-317TrueFalseFalseTruemothur_summary_seqs, mothur_classify_seqs, mothur_pre_cluster, mothur_rarefaction_single, mothur_remove_lineage, mothur_unique_seqs, collapse_dataset, XY_Plot_1, newick_display, mothur_sub_sample, mothur_summary_single, mothur_venn, mothur_make_shared, mothur_heatmap_sim, mothur_dist_shared, mothur_screen_seqs, mothur_count_seqs, mothur_cluster_split, mothur_remove_seqs, mothur_classify_otu, mothur_filter_seqs, mothur_remove_groups, mothur_cluster, mothur_count_groups, mothur_dist_seqs, mothur_chimera_vsearch, mothur_tree_sharedUseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.auUseGalaxy.cz, UseGalaxy.fr94.666667148528246.0500000
Microbiome16S Microbial Analysis with mothur (extended)https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysisPhylogenetic tree reconstruction, Sequence read processing, Sequencing quality control, Visualisation, Phylogenetic tree generation, Taxonomic classification, Phylogenetic analysis, DNA barcoding, Sequence clustering, Phylogenetic tree analysis2017-02-122024-03-144TrueFalseFalseTruemothur_make_contigs, mothur_seq_error, mothur_summary_seqs, mothur_classify_seqs, mothur_pre_cluster, mothur_align_seqs, mothur_rarefaction_single, mothur_remove_lineage, mothur_unique_seqs, mothur_taxonomy_to_krona, XY_Plot_1, newick_display, mothur_sub_sample, mothur_summary_single, mothur_make_biom, mothur_venn, mothur_make_shared, mothur_heatmap_sim, mothur_dist_shared, mothur_screen_seqs, mothur_get_groups, mothur_count_seqs, mothur_cluster_split, mothur_remove_seqs, mothur_classify_otu, mothur_filter_seqs, mothur_remove_groups, mothur_cluster, taxonomy_krona_chart, mothur_count_groups, mothur_dist_seqs, mothur_chimera_vsearch, mothur_tree_sharedUseGalaxy.euUseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au444.613636364656833.1333330
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 diseaseLocal alignment, Sequence composition calculation, Sequence alignment analysis, Global alignment, Variant calling, Validation, Sequencing quality control, Phylogenetic tree generation, Antimicrobial resistance prediction, Taxonomic classification, Genome visualisation, Statistical calculation, Sequence alignment, Sequence analysis, Phylogenetic tree visualisation, Sequence contamination filtering2020-07-252024-06-1275TrueFalseFalseTruetb_variant_filter, bcftools_consensus, jvarkit_wgscoverageplotter, fastp, jbrowse, snippy, kraken2, EMBOSS:%20seqret84, qualimap_bamqc, fastqc, tb_profiler_profile, EMBOSS: seqret84, mosdepth, tbvcfreport, __FLATTEN__, multiqc, upload1, tp_sed_tool, samtools_stats, tp_awk_tool254.64534085872.9666670
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 annotation, Genome visualisation, Read mapping2024-01-232024-03-139TrueFalseFalseTrueupload1, staramr_search, bakta, Grep1, bowtie2, tbl2gff3, jbrowseUseGalaxy.cz, UseGalaxy.eu, UseGalaxy.frGalaxy@AuBi072610613.0666670
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-162023-02-1519TrueFalseFalseTrueraxml, interactive_tool_rstudio, upload1UseGalaxy.euUseGalaxy.fr, UseGalaxy.org (Main)64.333333121118572.2666670
EvolutionIdentifying tuberculosis transmission links: from SNPs to transmission clustershttps://training.galaxyproject.org//topics/evolution/tutorials/mtb_transmission/tutorial.htmlGenomics, Microbiology, Infectious disease, DNA polymorphismAntimicrobial resistance prediction, Phylogenetic tree generation, Phylogenetic tree visualisation, Variant calling2022-03-162024-03-1215TrueFalseFalseTruesnippy, tb_variant_filter, tp_replace_in_line, trimmomatic, bcftools_consensus, snp_sites, tp_sed_tool, addName, tp_cat, upload1, collapse_dataset, Grep1, __MERGE_COLLECTION__, tp_easyjoin_tool, tb_profiler_profile, samtools_view, tp_grep_tool, snp_distsUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main)74.0137722113.1833330
ProteomicsmetaQuantome 3: Taxonomyhttps://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-taxonomy/tutorial.htmlProteomics, Proteogenomics, Metatranscriptomics, Microbial ecology, Metagenomics, TaxonomyStatistical inference, Quantification, Functional clustering, Visualisation, Filtering, Principal component visualisation, Indexing, Query and retrieval, Differential protein expression analysis, Heat map generation2020-10-292024-03-1436TrueFalseFalseTruemetaquantome_filter, metaquantome_expand, metaquantome_sample, metaquantome_viz, metaquantome_db, metaquantome_statUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au03574872.7333330
ProteomicsMetaproteomics tutorialhttps://training.galaxyproject.org//topics/proteomics/tutorials/metaproteomics/tutorial.htmlProteomics, Proteogenomics, Biodiversity, TaxonomyPrediction and recognition, Visualisation2017-06-282024-05-2957TrueFalseFalseTruesearch_gui, peptide_shaker, sqlite_to_tabular, query_tabular, unipeptUseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.auUseGalaxy.cz15.0219836762.6833330
ProteomicsmetaQuantome 1: Data creationhttps://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-data-creation/tutorial.htmlProteomics, Proteogenomics, Biodiversity, TaxonomyPrediction and recognition, Formatting, Visualisation, Label-free quantification, Filtering2020-10-162024-03-1490TrueFalseFalseTrueflashlfq, Cut1, tp_replace_in_line, Remove beginning1, tp_replace_in_column, Grep1, unipept, peptide_shaker, regex1, msconvert, query_tabular, Filter1, search_guiUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au075713253.8666670
ProteomicsmetaQuantome 2: Functionhttps://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-function/tutorial.htmlProteomics, Proteogenomics, Metatranscriptomics, Microbial ecology, MetagenomicsStatistical inference, Quantification, Functional clustering, Visualisation, Filtering, Principal component visualisation, Indexing, Query and retrieval, Differential protein expression analysis, Heat map generation2020-10-292024-03-1438TrueFalseFalseTruemetaquantome_filter, metaquantome_expand, metaquantome_sample, metaquantome_viz, metaquantome_db, metaquantome_statUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au03374893.8666670
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 variationSequence composition calculation, Sequence alignment analysis, Generation, Sequence alignment, Variant calling, Genome indexing, Sequencing quality control, Formatting, Read mapping, Statistical calculation, Data handling2017-02-162024-03-1439TrueFalseFalseTruepicard_MergeSamFiles, fastqc, Cut1, picard_MarkDuplicates, freebayes, vcf2tsv, bamFilter, bwa_mem, bamleftalign, vcffilter2UseGalaxy.eu, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main)UseGalaxy.cz, UseGalaxy.org.au32.3333336849131782.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 diseaseLocal alignment, Sequence composition calculation, Sequence alignment analysis, Global alignment, Variant calling, Validation, Sequencing quality control, Phylogenetic tree generation, Antimicrobial resistance prediction, Taxonomic classification, Genome visualisation, Statistical calculation, Sequence alignment, Sequence analysis, Phylogenetic tree visualisation, Sequence contamination filtering2020-07-252024-06-1275TrueFalseFalseTruetb_variant_filter, bcftools_consensus, jvarkit_wgscoverageplotter, fastp, jbrowse, snippy, kraken2, EMBOSS:%20seqret84, qualimap_bamqc, fastqc, tb_profiler_profile, EMBOSS: seqret84, mosdepth, tbvcfreport, __FLATTEN__, multiqc, upload1, tp_sed_tool, samtools_stats, tp_awk_tool254.64534085872.9666670
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, Phylogenetic tree generation, Phylogenetic tree visualisation, Variant calling2018-02-262024-03-1436TrueFalseFalseTruesnippy, jbrowseUseGalaxy.eu, UseGalaxy.org (Main)GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au124.41666711631196481.9833330
- -
\ No newline at end of file diff --git a/results/microgalaxy/tutorials.tsv b/results/microgalaxy/tutorials.tsv deleted file mode 100644 index 837d094c..00000000 --- a/results/microgalaxy/tutorials.tsv +++ /dev/null @@ -1,48 +0,0 @@ -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 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, Read mapping, Sequence visualisation, Mapping 2018-06-14 2024-03-11 86 True False False True Cut1, tp_replace_in_line, mergeCols1, tp_replace_in_column, fasta_filter_by_length, Grep1, cat1, circos_aln_to_links, jbrowse, fasta_compute_length, collapse_dataset, random_lines1, bedtools_sortbed, lastz_wrapper_2, addValue, circos, join1, Filter1, bedtools_intersectbed, bedtools_complementbed, upload1, tp_sed_tool, tp_cat, datamash_ops, tp_sort_header_tool, circos_interval_to_tiles, tp_grep_tool 1 2.0 5828 11935 3.033333333333333 0 -Assembly Assembly of metagenomic sequencing data https://training.galaxyproject.org//topics/assembly/tutorials/metagenomics-assembly/tutorial.html Metagenomics, Sequence assembly Sequence composition calculation, Genome assembly, Visualisation, Primer removal, Sequence assembly visualisation, Sequence file editing, Read mapping, Statistical calculation, Data handling, Sequence contamination filtering, Local alignment, Sequence alignment analysis, Variant calling, Sequencing quality control, Read pre-processing, Sequence assembly validation, Formatting, Sequence trimming 2024-06-24 2024-06-24 0 True False False True filter_tabular, bandage_image, metaspades, megahit, quast, cutadapt, tp_cat, ngsutils_bam_filter, megahit_contig2fastg, random_lines1, bamtools, bowtie2, bandage_info, collection_column_join, coverm_contig, seqtk_subseq, fastqc, bg_uniq UseGalaxy.cz, UseGalaxy.eu 0 1 1 0.0 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 Sequence assembly visualisation, Sequence composition calculation, Sequence contamination filtering, Genome assembly, Statistical calculation, Sequencing quality control, Visualisation, Sequence assembly validation 2021-03-24 2024-03-11 28 True False False True bandage_image, upload1, quast, bandage_info, fastqc, fastp, shovill UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr, UseGalaxy.org (Main) Galaxy@AuBi, GalaxyTrakr, UseGalaxy.no 8 4.5 6115 9890 3.7333333333333334 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 De-novo assembly, Sequence composition calculation, Genome assembly, Sequencing error detection, Visualisation, Sequencing quality control, Mapping assembly, Sequence assembly visualisation, Sequence assembly validation, Cross-assembly, Box-Whisker plot plotting, Scatter plot plotting, Filtering, Read mapping, Statistical calculation, Sequence alignment, Sequence contamination filtering 2021-03-24 2024-03-13 35 True False False True flye, nanoplot, bandage_image, polypolish, upload1, quast, porechop, CONVERTER_bz2_to_uncompressed, bwa_mem2, filtlong, fastqc, fastp UseGalaxy.eu UseGalaxy.cz 2 4.0 6353 9777 3.4166666666666665 0 -Assembly Unicycler Assembly https://training.galaxyproject.org//topics/assembly/tutorials/unicycler-assembly/tutorial.html Sequence assembly, Genomics, Microbiology Sequence composition calculation, Genome assembly, Validation, Coding region prediction, Sequencing quality control, Visualisation, Sequence assembly validation, Statistical calculation, Gene prediction, Aggregation, Genome annotation 2017-10-11 2024-03-11 61 True True False True quast, prokka, unicycler, multiqc, fastqc UseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.au GalaxyTrakr, HyPhy HIV NGS Tools, MISSISSIPPI, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no 8 3.75 1994916 5552489 4.566666666666666 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 Statistical calculation, Cross-assembly, Taxonomic classification, Expression analysis 2024-03-04 2024-04-04 5 True False False True kraken2, recentrifuge, upload1, est_abundance UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.org (Main) 1 5.0 165 226 4.866666666666666 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 2023-02-15 19 True False False True raxml, interactive_tool_rstudio, upload1 UseGalaxy.eu UseGalaxy.fr, UseGalaxy.org (Main) 6 4.333333333333333 1211 1857 2.2666666666666666 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 Antimicrobial resistance prediction, Phylogenetic tree generation, Phylogenetic tree visualisation, Variant calling 2022-03-16 2024-03-12 15 True False False True snippy, tb_variant_filter, tp_replace_in_line, trimmomatic, bcftools_consensus, snp_sites, tp_sed_tool, addName, tp_cat, upload1, collapse_dataset, Grep1, __MERGE_COLLECTION__, tp_easyjoin_tool, tb_profiler_profile, samtools_view, tp_grep_tool, snp_dists UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main) 7 4.0 1377 2211 3.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 annotation, Coding region prediction, Gene prediction, Genome visualisation 2018-03-06 2024-05-29 43 True True True True prokka, jbrowse UseGalaxy.eu, UseGalaxy.org (Main) Galaxy@AuBi, GalaxyTrakr, MISSISSIPPI, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 17 3.764705882352941 1999341 5560175 4.316666666666666 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 Structural variation detection, Genome assembly, Nucleic acid feature detection, Protein feature detection, Scaffolding, Multilocus sequence typing, Sequence motif recognition, Genome visualisation, Genome annotation 2024-02-01 2024-03-13 8 True False False True tp_tail_tool, upload1, bakta, isescan, Grouping1, tp_replace_in_column, tbl2gff3, plasmidfinder, integron_finder, jbrowse Galaxy@AuBi, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr 1 1.0 1237 1630 2.4833333333333334 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 annotation, Genome visualisation, Read mapping 2024-01-23 2024-03-13 9 True False False True upload1, staramr_search, bakta, Grep1, bowtie2, tbl2gff3, jbrowse UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi 0 726 1061 3.066666666666667 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-05-29 40 True True True True iframe, create_or_update, list_organism, create_account, jbrowse UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.no 5 4.6 1757138 4755339 5.016666666666667 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 De-novo assembly, Sequence alignment analysis, Multiple sequence alignment, Coding region prediction, Phylogenetic tree generation, Transcriptome assembly, Database search 2022-09-08 2024-03-18 30 True False False True Add_a_column1, gops_intersect_1, Cut1, orfipy, bg_diamond_view, tp_split_on_column, bg_diamond, tab2fasta, rbc_mafft, collapse_dataset, cat1, regexColumn1, join1, rapidnj, Filter1, bg_diamond_makedb UseGalaxy.eu, UseGalaxy.org (Main) UseGalaxy.cz 0 910 1395 3.1166666666666667 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, Read pre-processing, Sequence trimming 2019-07-02 2024-03-15 52 True True False True Add_a_column1, Cut1, bowtie_wrapper, transit_gumbel, cutadapt, gff_to_prot, tp_sort_header_tool, __EXTRACT_DATASET__, deeptools_bam_coverage, tp_easyjoin_tool, bg_find_subsequences, Filter1 UseGalaxy.no UseGalaxy.cz, UseGalaxy.eu 4 4.5 1990676 5545573 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 annotation, Coding region prediction, Gene prediction, Genome visualisation 2018-03-06 2024-05-29 43 True True True True prokka, jbrowse UseGalaxy.eu, UseGalaxy.org (Main) Galaxy@AuBi, GalaxyTrakr, MISSISSIPPI, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 17 3.764705882352941 1999341 5560176 4.316666666666666 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, Phylogenetic tree generation, Phylogenetic tree visualisation, Variant calling 2018-02-26 2024-03-14 36 True False False True snippy, jbrowse UseGalaxy.eu, UseGalaxy.org (Main) GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 12 4.416666666666667 11631 19648 1.9833333333333334 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, Read mapping, Sequence visualisation, Mapping 2018-06-14 2024-03-11 86 True False False True Cut1, tp_replace_in_line, mergeCols1, tp_replace_in_column, fasta_filter_by_length, Grep1, cat1, circos_aln_to_links, jbrowse, fasta_compute_length, collapse_dataset, random_lines1, bedtools_sortbed, lastz_wrapper_2, addValue, circos, join1, Filter1, bedtools_intersectbed, bedtools_complementbed, upload1, tp_sed_tool, tp_cat, datamash_ops, tp_sort_header_tool, circos_interval_to_tiles, tp_grep_tool 1 2.0 5828 11935 3.033333333333333 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 De-novo assembly, Sequence composition calculation, Genome assembly, Sequencing error detection, Visualisation, Sequencing quality control, Mapping assembly, Sequence assembly visualisation, Sequence assembly validation, Cross-assembly, Box-Whisker plot plotting, Scatter plot plotting, Filtering, Read mapping, Statistical calculation, Sequence alignment, Sequence contamination filtering 2021-03-24 2024-03-13 35 True False False True flye, nanoplot, bandage_image, polypolish, upload1, quast, porechop, CONVERTER_bz2_to_uncompressed, bwa_mem2, filtlong, fastqc, fastp UseGalaxy.eu UseGalaxy.cz 2 4.0 6353 9777 3.4166666666666665 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 Structural variation detection, Genome assembly, Nucleic acid feature detection, Protein feature detection, Scaffolding, Multilocus sequence typing, Sequence motif recognition, Genome visualisation, Genome annotation 2024-02-01 2024-03-13 8 True False False True tp_tail_tool, upload1, bakta, isescan, Grouping1, tp_replace_in_column, tbl2gff3, plasmidfinder, integron_finder, jbrowse Galaxy@AuBi, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr 1 1.0 1237 1630 2.4833333333333334 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 annotation, Genome visualisation, Read mapping 2024-01-23 2024-03-13 9 True False False True upload1, staramr_search, bakta, Grep1, bowtie2, tbl2gff3, jbrowse UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi 0 726 1061 3.066666666666667 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-05-29 40 True True True True iframe, create_or_update, list_organism, create_account, jbrowse UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.no 5 4.6 1757138 4755340 5.016666666666667 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 Sequence read processing, Sequencing quality control, Visualisation, Taxonomic classification, Phylogenetic analysis, DNA barcoding, Sequence clustering 2017-06-22 2024-03-14 4 True False False True mothur_summary_seqs, mothur_classify_seqs, humann2_regroup_table, krona-text, mothur_pre_cluster, mothur_align_seqs, mothur_make_group, mothur_unique_seqs, humann2_renorm_table, metaphlan2, metaphlan2krona, mothur_merge_files, mothur_make_biom, mothur_make_shared, mothur_screen_seqs, mothur_count_seqs, mothur_cluster_split, mothur_classify_otu, mothur_filter_seqs, taxonomy_krona_chart, humann2 UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 16 4.0625 2225 2984 2.65 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 Phylogenetic tree reconstruction, Sequence composition calculation, Base-calling, Genome assembly, Phylogenetic tree generation (from molecular sequences), Validation, Visualisation, Sequence assembly visualisation, Multilocus sequence typing, Scatter plot plotting, Statistical calculation, Data handling, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Pairwise sequence alignment, Sequence contamination filtering, De-novo assembly, Sequence alignment analysis, Variant calling, Mapping, Sequencing quality control, Phylogenetic tree generation, Mapping assembly, Box-Whisker plot plotting, Cross-assembly, Taxonomic classification, Antimicrobial resistance prediction, Multiple sequence alignment, Sequence assembly, Aggregation, Phylogenetic tree analysis 2023-01-26 2024-06-19 18 True False False True nanoplot, bandage_image, Cut1, CONVERTER_gz_to_uncompressed, bcftools_consensus, samtools_fastx, Grouping1, tp_replace_in_column, Grep1, __BUILD_LIST__, tp_find_and_replace, regex1, clustalw, fastp, tp_sorted_uniq, collection_element_identifiers, Paste1, flye, Add_a_column1, medaka_consensus_pipeline, Count1, minimap2, table_compute, tp_split_on_column, bamtools_split_mapped, clair3, kraken2, collapse_dataset, __FILTER_EMPTY_DATASETS__, compose_text_param, samtools_depth, snpSift_extractFields, regexColumn1, fastqc, abricate, newick_display, krakentools_extract_kraken_reads, bcftools_norm, barchart_gnuplot, Remove beginning1, samtools_coverage, split_file_to_collection, porechop, tp_multijoin_tool, mlst, tp_head_tool, multiqc, collection_column_join, fasta_merge_files_and_filter_unique_sequences, param_value_from_file, add_line_to_file, krakentools_kreport2krona, bedtools_getfastabed, fasttree, tab2fasta, ggplot2_heatmap, snpSift_filter, __FILTER_FAILED_DATASETS__, taxonomy_krona_chart, fasta2tab, tp_cut_tool UseGalaxy.eu 1 5.0 1259 1884 2.8 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 Taxonomic classification, Aggregation, Nucleic acid sequence analysis, Statistical calculation, Visualisation, Phylogenetic tree analysis 2023-05-03 2024-05-29 4 True False False True interactive_tool_pavian, interactive_tool_phinch, est_abundance, kraken2, metaphlan, kraken_biom, taxonomy_krona_chart, __UNZIP_COLLECTION__, krakentools_kreport2krona UseGalaxy.eu UseGalaxy.org.au 3 4.333333333333333 2673 3680 1.9 0 -Microbiome Assembly of metagenomic sequencing data https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-assembly/tutorial.html Metagenomics, Sequence assembly Sequence composition calculation, Genome assembly, Visualisation, Primer removal, Sequence assembly visualisation, Sequence file editing, Read mapping, Statistical calculation, Data handling, Sequence contamination filtering, Local alignment, Sequence alignment analysis, Variant calling, Sequencing quality control, Read pre-processing, Sequence assembly validation, Formatting, Sequence trimming 2022-12-05 2024-05-29 4 True False False True filter_tabular, bandage_image, metaspades, megahit, quast, cutadapt, tp_cat, ngsutils_bam_filter, megahit_contig2fastg, random_lines1, bamtools, bowtie2, bandage_info, collection_column_join, coverm_contig, seqtk_subseq, fastqc, bg_uniq UseGalaxy.cz, UseGalaxy.eu 0 1100 1543 2.6 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, Genome assembly, Mapping assembly, Sequence assembly visualisation, Box-Whisker plot plotting, Scatter plot plotting, Aggregation, Sequence analysis, Pairwise sequence alignment 2019-06-25 2024-05-29 4 True False False True nanoplot, bandage_image, racon, staramr_search, PlasFlow, gfa_to_fa, unicycler, miniasm, minimap2 UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au 10 5.0 902 1419 4.05 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 Taxonomic classification, Sequence composition calculation, Statistical calculation, Validation, Sequencing quality control, Visualisation, Sequence contamination filtering 2020-11-24 2024-03-21 4 True False False True tp_replace_in_line, kraken2, Remove beginning1, porechop, multiqc, datamash_reverse, taxonomy_krona_chart, fastqc, fastp UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au GalaxyTrakr, UseGalaxy.cz 13 4.6923076923076925 1835 2617 2.9 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 Sequence composition calculation, Phylogenetic tree visualisation, Validation, Phylogenetic inference, Primer removal, Visualisation, Species frequency estimation, Statistical calculation, Phylogenetic analysis, Sequence similarity search, Sequence alignment analysis, Sequence comparison, Sequencing quality control, Read pre-processing, Phylogenetic tree editing, Taxonomic classification, Conversion, Nucleic acid sequence analysis, Phylogenetic tree analysis, Sequence trimming 2019-11-21 2024-05-29 4 True True False True graphlan_annotate, Cut1, humann_split_stratified_table, bg_sortmerna, Grep1, tp_find_and_replace, graphlan, humann_renorm_table, humann, metaphlan, humann_rename_table, fastqc, multiqc, combine_metaphlan2_humann2, fastq_paired_end_interlacer, cutadapt, export2graphlan, humann_regroup_table, taxonomy_krona_chart, humann_unpack_pathways UseGalaxy.org (Main) UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 6 4.5 1986067 5535600 4.3 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 Sequence composition calculation, Phylogenetic tree visualisation, Validation, Phylogenetic inference, Primer removal, Visualisation, Species frequency estimation, Statistical calculation, Phylogenetic analysis, Sequence similarity search, Sequence alignment analysis, Sequence comparison, Sequencing quality control, Read pre-processing, Phylogenetic tree editing, Taxonomic classification, Conversion, Nucleic acid sequence analysis, Phylogenetic tree analysis, Sequence trimming 2020-02-13 2024-05-29 4 True False False True graphlan_annotate, Cut1, humann_split_stratified_table, bg_sortmerna, Grep1, tp_find_and_replace, graphlan, humann_renorm_table, humann, metaphlan, humann_rename_table, fastqc, multiqc, combine_metaphlan2_humann2, fastq_paired_end_interlacer, cutadapt, export2graphlan, humann_regroup_table, taxonomy_krona_chart, humann_unpack_pathways UseGalaxy.org (Main) UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 1 5.0 184 236 2.0 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 Taxonomic classification, Sequence composition calculation, Aggregation, Statistical calculation, Sequencing quality control, Visualisation, Sequence contamination filtering 2022-09-29 2024-05-29 4 True False False True kraken2, porechop, taxonomy_krona_chart, fastqc, fastp, Filter1, krakentools_kreport2krona GalaxyTrakr, UseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.au UseGalaxy.cz 3 4.666666666666667 969 1570 3.0 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 Variant calling, DNA barcoding, Deposition, Visualisation, Analysis 2024-06-05 2024-06-17 9 True False False True tp_replace_in_line, dada2_filterAndTrim, dada2_plotQualityProfile, Grouping1, tp_replace_in_column, cat1, interactive_tool_phyloseq, collection_element_identifiers, Add_a_column1, dada2_mergePairs, dada2_seqCounts, __UNZIP_COLLECTION__, __SORTLIST__, dada2_dada, dada2_makeSequenceTable, phyloseq_from_dada2, tp_head_tool, dada2_removeBimeraDenovo, dada2_learnErrors, dada2_assignTaxonomyAddspecies UseGalaxy.eu, UseGalaxy.fr 0 104 129 1.4833333333333334 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 6 external False False False UseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr 1 5.0 83 152 1.2333333333333334 0 -Microbiome Binning of metagenomic sequencing data https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-binning/tutorial.html Metagenomics, Sequence assembly Sequence composition calculation, Genome assembly, Statistical calculation, Validation, Sequencing quality control, Sequence assembly validation 2023-12-05 2024-03-14 4 True False False False checkm_lineage_wf, megahit GalaxyTrakr, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr 0 1134 1367 1.5166666666666666 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 2 external False False False UseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr 1 5.0 72 94 3.4166666666666665 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 Phylogenetic tree reconstruction, Sequence read processing, Sequencing quality control, Visualisation, Phylogenetic tree generation, Taxonomic classification, Phylogenetic analysis, DNA barcoding, Sequence clustering, Phylogenetic tree analysis 2019-05-13 2024-05-31 7 True False False True mothur_summary_seqs, mothur_classify_seqs, mothur_pre_cluster, mothur_rarefaction_single, mothur_remove_lineage, mothur_unique_seqs, collapse_dataset, XY_Plot_1, newick_display, mothur_sub_sample, mothur_summary_single, mothur_venn, mothur_make_shared, mothur_heatmap_sim, mothur_dist_shared, mothur_screen_seqs, mothur_count_seqs, mothur_cluster_split, mothur_remove_seqs, mothur_classify_otu, mothur_filter_seqs, mothur_remove_groups, mothur_cluster, mothur_count_groups, mothur_dist_seqs, mothur_chimera_vsearch, mothur_tree_shared UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au UseGalaxy.cz, UseGalaxy.fr 9 4.666666666666667 1485 2824 6.05 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 Phylogenetic tree reconstruction, Sequence read processing, Sequencing quality control, Visualisation, Phylogenetic tree generation, Taxonomic classification, Phylogenetic analysis, DNA barcoding, Sequence clustering, Phylogenetic tree analysis 2017-02-12 2024-03-14 4 True False False True mothur_make_contigs, mothur_seq_error, mothur_summary_seqs, mothur_classify_seqs, mothur_pre_cluster, mothur_align_seqs, mothur_rarefaction_single, mothur_remove_lineage, mothur_unique_seqs, mothur_taxonomy_to_krona, XY_Plot_1, newick_display, mothur_sub_sample, mothur_summary_single, mothur_make_biom, mothur_venn, mothur_make_shared, mothur_heatmap_sim, mothur_dist_shared, mothur_screen_seqs, mothur_get_groups, mothur_count_seqs, mothur_cluster_split, mothur_remove_seqs, mothur_classify_otu, mothur_filter_seqs, mothur_remove_groups, mothur_cluster, taxonomy_krona_chart, mothur_count_groups, mothur_dist_seqs, mothur_chimera_vsearch, mothur_tree_shared UseGalaxy.eu UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au 44 4.613636363636363 3646 5683 3.1333333333333333 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 Local alignment, Sequence composition calculation, Sequence alignment analysis, Global alignment, Variant calling, Validation, Sequencing quality control, Phylogenetic tree generation, Antimicrobial resistance prediction, Taxonomic classification, Genome visualisation, Statistical calculation, Sequence alignment, Sequence analysis, Phylogenetic tree visualisation, Sequence contamination filtering 2020-07-25 2024-06-12 75 True False False True tb_variant_filter, bcftools_consensus, jvarkit_wgscoverageplotter, fastp, jbrowse, snippy, kraken2, EMBOSS:%20seqret84, qualimap_bamqc, fastqc, tb_profiler_profile, EMBOSS: seqret84, mosdepth, tbvcfreport, __FLATTEN__, multiqc, upload1, tp_sed_tool, samtools_stats, tp_awk_tool 25 4.64 5340 8587 2.966666666666667 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 annotation, Genome visualisation, Read mapping 2024-01-23 2024-03-13 9 True False False True upload1, staramr_search, bakta, Grep1, bowtie2, tbl2gff3, jbrowse UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi 0 726 1061 3.066666666666667 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 2023-02-15 19 True False False True raxml, interactive_tool_rstudio, upload1 UseGalaxy.eu UseGalaxy.fr, UseGalaxy.org (Main) 6 4.333333333333333 1211 1857 2.2666666666666666 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 Antimicrobial resistance prediction, Phylogenetic tree generation, Phylogenetic tree visualisation, Variant calling 2022-03-16 2024-03-12 15 True False False True snippy, tb_variant_filter, tp_replace_in_line, trimmomatic, bcftools_consensus, snp_sites, tp_sed_tool, addName, tp_cat, upload1, collapse_dataset, Grep1, __MERGE_COLLECTION__, tp_easyjoin_tool, tb_profiler_profile, samtools_view, tp_grep_tool, snp_dists UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main) 7 4.0 1377 2211 3.183333333333333 0 -Proteomics metaQuantome 3: Taxonomy https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-taxonomy/tutorial.html Proteomics, Proteogenomics, Metatranscriptomics, Microbial ecology, Metagenomics, Taxonomy Statistical inference, Quantification, Functional clustering, Visualisation, Filtering, Principal component visualisation, Indexing, Query and retrieval, Differential protein expression analysis, Heat map generation 2020-10-29 2024-03-14 36 True False False True metaquantome_filter, metaquantome_expand, metaquantome_sample, metaquantome_viz, metaquantome_db, metaquantome_stat UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 357 487 2.7333333333333334 0 -Proteomics Metaproteomics tutorial https://training.galaxyproject.org//topics/proteomics/tutorials/metaproteomics/tutorial.html Proteomics, Proteogenomics, Biodiversity, Taxonomy Prediction and recognition, Visualisation 2017-06-28 2024-05-29 57 True False False True search_gui, peptide_shaker, sqlite_to_tabular, query_tabular, unipept UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au UseGalaxy.cz 1 5.0 2198 3676 2.683333333333333 0 -Proteomics metaQuantome 1: Data creation https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-data-creation/tutorial.html Proteomics, Proteogenomics, Biodiversity, Taxonomy Prediction and recognition, Formatting, Visualisation, Label-free quantification, Filtering 2020-10-16 2024-03-14 90 True False False True flashlfq, Cut1, tp_replace_in_line, Remove beginning1, tp_replace_in_column, Grep1, unipept, peptide_shaker, regex1, msconvert, query_tabular, Filter1, search_gui UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 757 1325 3.8666666666666667 0 -Proteomics metaQuantome 2: Function https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-function/tutorial.html Proteomics, Proteogenomics, Metatranscriptomics, Microbial ecology, Metagenomics Statistical inference, Quantification, Functional clustering, Visualisation, Filtering, Principal component visualisation, Indexing, Query and retrieval, Differential protein expression analysis, Heat map generation 2020-10-29 2024-03-14 38 True False False True metaquantome_filter, metaquantome_expand, metaquantome_sample, metaquantome_viz, metaquantome_db, metaquantome_stat UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 337 489 3.8666666666666667 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 Sequence composition calculation, Sequence alignment analysis, Generation, Sequence alignment, Variant calling, Genome indexing, Sequencing quality control, Formatting, Read mapping, Statistical calculation, Data handling 2017-02-16 2024-03-14 39 True False False True picard_MergeSamFiles, fastqc, Cut1, picard_MarkDuplicates, freebayes, vcf2tsv, bamFilter, bwa_mem, bamleftalign, vcffilter2 UseGalaxy.eu, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main) UseGalaxy.cz, UseGalaxy.org.au 3 2.3333333333333335 6849 13178 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 Local alignment, Sequence composition calculation, Sequence alignment analysis, Global alignment, Variant calling, Validation, Sequencing quality control, Phylogenetic tree generation, Antimicrobial resistance prediction, Taxonomic classification, Genome visualisation, Statistical calculation, Sequence alignment, Sequence analysis, Phylogenetic tree visualisation, Sequence contamination filtering 2020-07-25 2024-06-12 75 True False False True tb_variant_filter, bcftools_consensus, jvarkit_wgscoverageplotter, fastp, jbrowse, snippy, kraken2, EMBOSS:%20seqret84, qualimap_bamqc, fastqc, tb_profiler_profile, EMBOSS: seqret84, mosdepth, tbvcfreport, __FLATTEN__, multiqc, upload1, tp_sed_tool, samtools_stats, tp_awk_tool 25 4.64 5340 8587 2.966666666666667 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, Phylogenetic tree generation, Phylogenetic tree visualisation, Variant calling 2018-02-26 2024-03-14 36 True False False True snippy, jbrowse UseGalaxy.eu, UseGalaxy.org (Main) GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 12 4.416666666666667 11631 19648 1.9833333333333334 0 diff --git a/results/repositories01.list_tools.json b/results/repositories01.list_tools.json deleted file mode 100644 index 50ab5a7b..00000000 --- a/results/repositories01.list_tools.json +++ /dev/null @@ -1,10405 +0,0 @@ -[ - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper", - "Galaxy wrapper version": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 7, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "Up-to-date", - "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.32", - "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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.0b4", - "EDAM operation (no superclasses)": [], - "EDAM topic (no superclasses)": [], - "Available on UseGalaxy.org (Main)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "Up-to-date", - "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.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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" - ], - "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/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": "3.12.0", - "Conda id": "bioconductor-xcms", - "Conda version": "4.0.0", - "EDAM operation (no superclasses)": [], - "EDAM topic (no superclasses)": [], - "Available on UseGalaxy.org (Main)": 9, - "Available on UseGalaxy.org.au": 9, - "Available on UseGalaxy.eu": 10, - "Available on UseGalaxy.fr": 10, - "Tools available on UseGalaxy.org (Main)": 9, - "Tools available on UseGalaxy.org.au": 9, - "Tools available on UseGalaxy.eu": 10, - "Tools available on UseGalaxy.fr": 10, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 9, - "No. of tool users (2022-2023) (usegalaxy.eu)": 356, - "Total tool usage (usegalaxy.eu)": 29809 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 9, - "Tools available on UseGalaxy.no": 9, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 2, - "Total tool usage (usegalaxy.eu)": 171 - }, - { - "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/gsneha26/SegAlign", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.2", - "Conda id": "segalign-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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 21, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 12, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 17, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 11, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 12, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 15, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 0, - "Total tool usage (usegalaxy.eu)": 0 - } -] \ No newline at end of file diff --git a/results/repositories01.list_tools.tsv b/results/repositories01.list_tools.tsv deleted file mode 100644 index 3ff76563..00000000 --- a/results/repositories01.list_tools.tsv +++ /dev/null @@ -1,140 +0,0 @@ -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) -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 0 0 0 3 3 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -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 0 0 0 1 1 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 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 9 9 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 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 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 0 0 1 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 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 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 0 0 -batched_lastz batched_lastz Galaxy wrapper for the batching Lastz runs Up-to-date https://github.com/gsneha26/SegAlign 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 0 0 -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 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 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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 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 0 0 0 2 2 30 623 -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 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 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 1583 33934 -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 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 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 0 0 -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 0 0 -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 0 0 -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 0 0 0 1 1 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 0 0 20 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 7 7 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 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 0 0 1 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 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 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 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 0 0 0 1 1 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 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -influx_data_manager influx_data_manager Handling influx_si data inputs in Galaxy workflows Up-to-date 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.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 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 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 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 0 0 0 1 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 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.0b4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 -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 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 Up-to-date 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.32 Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 114 936 -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 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 0 0 -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 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 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 322 89021 -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 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 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 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 0 0 0 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 0 0 0 1 1 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 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 0 0 0 2 2 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 0 0 0 1 1 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 0 0 -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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 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 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 0 -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 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 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 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 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 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 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 0 0 -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 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 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 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 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 0 0 2 0 2 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 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 0 0 0 1 1 20 537 -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 0 0 -segalign segalign A Scalable GPU System for Pairwise Whole Genome Alignments based on LASTZ's seed-filter-extend paradigm. To update 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.2 segalign-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 0 0 -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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -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 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 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 0 0 0 1 1 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 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 0 0 -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 0 0 -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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 3 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 0 0 0 4 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 0 0 0 4 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 0 0 0 4 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 0 0 0 3 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 0 0 0 6 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 0 0 0 21 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 0 0 0 12 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 0 0 0 3 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 0 0 0 10 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 0 0 0 17 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 0 0 0 3 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 0 0 0 11 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 0 0 0 3 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 0 0 0 12 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 0 0 0 6 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 0 0 0 1 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 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 0 0 0 15 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 0 0 0 4 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 0 0 0 8 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 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 0 0 0 2 0 124 7087 -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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 1 3 2834 -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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 -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 To update https://github.com/sneumann/xcms Metabolomics xcms workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/ https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/xcms 3.12.0 bioconductor-xcms 4.0.0 9 9 10 10 9 9 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 0 0 0 10 9 356 29809 diff --git a/results/repositories02.list_tools.json b/results/repositories02.list_tools.json deleted file mode 100644 index 261d52df..00000000 --- a/results/repositories02.list_tools.json +++ /dev/null @@ -1,25311 +0,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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 1, - "Tools available on ARGs-OAP": 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 CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "Up-to-date", - "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": "1.4.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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.2.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 200, - "Total tool usage (usegalaxy.eu)": 5749 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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)": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 23, - "Tools available on UseGalaxy.no": 19, - "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": null, - "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.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 8, - "Total tool usage (usegalaxy.eu)": 43 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "iuc", - "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": "1.0.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 31, - "Total tool usage (usegalaxy.eu)": 763 - }, - { - "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.3", - "Conda id": "flye", - "Conda version": "2.9.4", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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": "0.0.12", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 6, - "No. of tool users (2022-2023) (usegalaxy.eu)": 76, - "Total tool usage (usegalaxy.eu)": 921 - }, - { - "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": "To update", - "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/bgruening/galaxytools/tree/master/tools/hifiasm", - "Galaxy wrapper version": "0.19.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 297, - "Total tool usage (usegalaxy.eu)": 1410 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.43", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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\u2019s 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 27, - "Tools available on UseGalaxy.no": 27, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "jbrowse2", - "bio.tool ids": [ - "jbrowse2" - ], - "biii": null, - "bio.tool name": null, - "bio.tool description": null, - "EDAM operation": [], - "EDAM topic": [], - "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.11.1", - "Conda id": "jbrowse2", - "Conda version": "2.12.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.520", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 135, - "Tools available on UseGalaxy.no": 134, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.3", - "Conda id": "galaxy-ml", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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+galaxy1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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": "1.9.2.3", - "Conda id": "locarna", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 6, - "Total tool usage (usegalaxy.eu)": 1074 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 21, - "Tools available on UseGalaxy.no": 21, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 1, - "Available on UseGalaxy.eu": 3, - "Available on UseGalaxy.fr": 1, - "Tools available on UseGalaxy.org (Main)": 2, - "Tools available on UseGalaxy.org.au": 1, - "Tools available on UseGalaxy.eu": 3, - "Tools available on UseGalaxy.fr": 1, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 31, - "Tools available on UseGalaxy.no": 27, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 19, - "Tools available on UseGalaxy.no": 19, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.5", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 248, - "Total tool usage (usegalaxy.eu)": 5067 - } -] \ No newline at end of file diff --git a/results/repositories02.list_tools.tsv b/results/repositories02.list_tools.tsv deleted file mode 100644 index 51bcb72c..00000000 --- a/results/repositories02.list_tools.tsv +++ /dev/null @@ -1,339 +0,0 @@ -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) -10x_bamtofastq 10x_bamtofastq Converts 10x Genomics BAM to FASTQ Up-to-date 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.4.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 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 2 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 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 0 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 To update 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.2.0 agat 1.4.0 Data handling, Genome 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 0 0 0 1 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 0 0 0 1 1 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.11.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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 200 5749 -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 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 0 0 0 1 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 0 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 0 4 4 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 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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.8 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 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 0 0 0 23 19 178 4614 -cellprofiler_v4 cp_cellprofiler4 cellProfiler4 wrapper To update Imaging cellprofiler4 bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v4 4.2.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 0 0 0 1 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 0 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 0 1 1 931 10965 -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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 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 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 1 1 1 1 1 1 1 1 0 0 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 0 1 1 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 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 0 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 0 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 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 0 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 0 0 0 1 1 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 iuc https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 1.0.0 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 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 0 0 0 1 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 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 0 0 0 1 1 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 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 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 0 1 1 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 0 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 0 1 1 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.11.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 1 1 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 0 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 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 0 1 1 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 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.11.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 20 671 -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.3 flye 2.9.4 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 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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.11.0 1 1 1 1 1 1 1 1 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 0 0 0 0 0 0 1 1 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 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 0 1 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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 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.43 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 0 0 0 2 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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+galaxy1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 0 0 -hictk hictk Convert cooler to juicebox_hic To update 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 0.0.12 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 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 0 0 0 7 6 76 921 -hifiasm hifiasm A fast haplotype-resolved de novo assembler To update https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm 0.19.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 297 1410 -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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 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 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 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 0 0 0 27 27 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 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 0 0 0 1 1 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 0 0 0 6 6 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 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 0 0 0 1 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 0 0 0 1 1 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.11.0 1 1 1 1 1 1 1 1 0 0 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 0 1 1 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 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 0 0 0 1 0 38 868 -jbrowse2 jbrowse2 JBrowse2 Genome Browser integrated as a Galaxy Tool jbrowse2 jbrowse2 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.11.1 jbrowse2 2.12.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 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.11.0 1 1 1 1 1 1 1 1 0 0 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 0 1 1 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 To update 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 1.9.2.3 locarna 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.520 mafft 7.525 Multiple sequence alignment Sequence analysis 2 2 2 2 2 2 2 2 0 0 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 0 2 2 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 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.11.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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 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 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 5 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 0 0 0 1 1 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 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 0 4 4 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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 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 0 0 0 1 1 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 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 0 0 0 135 134 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 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 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 0 0 0 1 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 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 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 0 0 0 1 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.11.0 1 1 1 1 1 1 1 1 0 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 0 1 1 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 0 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 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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.3 galaxy-ml 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 6 6 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 0 0 0 1 1 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.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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 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 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 0 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 0 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 3 3 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 6 1074 -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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 6 6 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 -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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 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 0 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 0 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 0 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 31 27 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 0 0 0 1 1 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 0 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 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.11.0 1 1 1 1 1 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 1 0 0 0 0 0 0 0 0 1 1 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.11.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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 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 0 0 0 1 1 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 0 0 19 1 19 0 0 19 0 0 0 20 0 0 0 0 0 0 0 0 19 19 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 0 0 0 1 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 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 0 0 0 1 1 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 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 1 1 1 0 1 1 1 0 0 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 0 1 1 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 0 0 0 1 1 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 0 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 0 1 1 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 0 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 0 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 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 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.5 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 0 0 0 1 1 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 1 1 1 1 1 1 1 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 1 1 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 0 0 0 1 1 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 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 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 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 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 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 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 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 21 21 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 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 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 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.11.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 344 5892 diff --git a/results/repositories03.list_tools.json b/results/repositories03.list_tools.json deleted file mode 100644 index 1a8a7ad6..00000000 --- a/results/repositories03.list_tools.json +++ /dev/null @@ -1,49669 +0,0 @@ -[ - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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.18", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.7", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.3", - "Conda id": "adapterremoval", - "Conda version": "2.3.3", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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\u2032 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.6", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 19, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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": "To update", - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 1175, - "Total tool usage (usegalaxy.eu)": 25975 - }, - { - "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)": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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": null, - "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.6", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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": null, - "ToolShed categories": [ - "Sequence Analysis" - ], - "ToolShed id": "barrnap", - "Galaxy wrapper owner": "iuc", - "Galaxy wrapper source": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "To update", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "455", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.06", - "Conda id": "bbmap", - "Conda version": "39.06", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 7, - "No. of tool users (2022-2023) (usegalaxy.eu)": 87, - "Total tool usage (usegalaxy.eu)": 2895 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 37, - "Tools available on UseGalaxy.no": 37, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "To update", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.7", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "2.9", - "Conda id": "bracken", - "Conda version": "2.9", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.38.3", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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/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)": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.5.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 8, - "Total tool usage (usegalaxy.eu)": 1393 - }, - { - "Galaxy wrapper id": "cami_amber", - "Galaxy tool ids": [ - "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.4", - "Conda id": "cami-amber", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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.18.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 11, - "Tools available on UseGalaxy.no": 11, - "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": "Up-to-date", - "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.4", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "0.1.12", - "Conda id": "clair3", - "Conda version": "1.0.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 651, - "Total tool usage (usegalaxy.eu)": 46793 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.0.4", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 17, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 5, - "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": "To update", - "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.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 10, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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": null, - "bio.tool description": null, - "EDAM operation": [], - "EDAM topic": [], - "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)": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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": "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/galaxyproject/tools-iuc/tree/master/tools/diffbind", - "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/diffbind", - "Galaxy wrapper version": "2.10.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.3.5", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 126, - "Total tool usage (usegalaxy.eu)": 3934 - }, - { - "Galaxy wrapper id": "ebi_tools", - "Galaxy tool ids": [ - "ebi_metagenomics_run_downloader", - "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.0", - "Conda id": "six", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "No. of tool users (2022-2023) (usegalaxy.eu)": 89, - "Total tool usage (usegalaxy.eu)": 2432 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 107, - "Tools available on UseGalaxy.no": 107, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 \u2013 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)": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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+galaxy0", - "Conda id": "falco", - "Conda version": "1.2.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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+galaxy0", - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "bio.tool description": null, - "EDAM operation": [], - "EDAM topic": [], - "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)": [], - "EDAM topic (no superclasses)": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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": 0, - "Tools available on CorGAT": 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.helmholtz-muenchen.de/en/ige/service/software-download/genehunter-modscore/index.html", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 \"+\u201d (W) and reverse \u201c-\u201d (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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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", - "Conda id": "genomescope2", - "Conda version": "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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\u00eancia.", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "No. of tool users (2022-2023) (usegalaxy.eu)": 432, - "Total tool usage (usegalaxy.eu)": 9277 - }, - { - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "447", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": [ - "heinz", - "bionet" - ], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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_hictadclassifier", - "hicexplorer_hictraintadclassifier", - "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": "To update", - "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.2", - "Conda id": "hicexplorer", - "Conda version": "3.7.4", - "EDAM operation (no superclasses)": [], - "EDAM topic (no superclasses)": [], - "Available on UseGalaxy.org (Main)": 0, - "Available on UseGalaxy.org.au": 5, - "Available on UseGalaxy.eu": 40, - "Available on UseGalaxy.fr": 4, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 5, - "Tools available on UseGalaxy.eu": 40, - "Tools available on UseGalaxy.fr": 4, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 36, - "Tools available on UseGalaxy.no": 33, - "No. of tool users (2022-2023) (usegalaxy.eu)": 1085, - "Total tool usage (usegalaxy.eu)": 66005 - }, - { - "Galaxy wrapper id": "hicstuff", - "Galaxy tool ids": [ - "hicstuff_pipeline" - ], - "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/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 0, - "Total tool usage (usegalaxy.eu)": 0 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 12, - "Tools available on UseGalaxy.no": 12, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 \u201cWhat are the microbes in my community-of-interest doing (or are capable of doing)?\u201d", - "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": 12, - "Available on UseGalaxy.eu": 13, - "Available on UseGalaxy.fr": 13, - "Tools available on UseGalaxy.org (Main)": 6, - "Tools available on UseGalaxy.org.au": 12, - "Tools available on UseGalaxy.eu": 13, - "Tools available on UseGalaxy.fr": 13, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 13, - "Tools available on UseGalaxy.no": 13, - "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.1.8", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 17, - "Tools available on UseGalaxy.no": 12, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 12, - "Total tool usage (usegalaxy.eu)": 1506 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.11.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 1, - "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 CorGAT": 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": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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.4", - "Conda id": "iqtree", - "Conda version": "2.3.4", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.50.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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": "2.3.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.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": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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)": 1, - "Available on UseGalaxy.org.au": 6, - "Available on UseGalaxy.eu": 6, - "Available on UseGalaxy.fr": 6, - "Tools available on UseGalaxy.org (Main)": 1, - "Tools available on UseGalaxy.org.au": 6, - "Tools available on UseGalaxy.eu": 6, - "Tools available on UseGalaxy.fr": 6, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "1548", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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\u2019omic 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": "0.99.12", - "Conda id": "maaslin2", - "Conda version": "1.16.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 9, - "Tools available on UseGalaxy.no": 9, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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": 0, - "Tools available on CorGAT": 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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\u2019s 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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": 1, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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\u009d) 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 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.4.1", - "Conda id": "meme", - "Conda version": "5.5.5", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "To update", - "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.0.6", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 129, - "Tools available on UseGalaxy.no": 129, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.22.3", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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.42.0", - "Conda id": "nanoplot", - "Conda version": "1.42.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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.1", - "Conda id": "entrez-direct", - "Conda version": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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.0", - "Conda id": "ncbi-fcs-gx", - "Conda version": "0.5.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 10, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 17, - "Tools available on UseGalaxy.no": 17, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.13.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "ToolShed categories": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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_samtofastq", - "picard_replacesamheader", - "picard_fastqtosam" - ], - "biii": null, - "bio.tool name": "picard_samtofastq", - "bio.tool description": "Create a FASTQ file.", - "EDAM operation": [ - "Formatting" - ], - "EDAM topic": [ - "Sequencing" - ], - "Status": "Up-to-date", - "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.1.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 29, - "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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 31, - "Tools available on UseGalaxy.no": 31, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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": "To update", - "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.1", - "Conda id": "picrust2", - "Conda version": "2.5.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "PLINK is a free, open-source 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 13, - "Tools available on UseGalaxy.no": 13, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.5", - "Conda id": "prot-scriber", - "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": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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": null, - "bio.tool description": null, - "EDAM operation": [], - "EDAM topic": [], - "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)": [], - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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\u2122 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 31, - "Tools available on UseGalaxy.no": 31, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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": "To update", - "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.2.2d", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "0.8.0", - "Conda id": "rasusa", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.0", - "Conda id": "recentrifuge", - "Conda version": "1.14.0", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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": 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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.2.3", - "Conda id": "rnaquast", - "Conda version": "2.2.3", - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 22, - "Tools available on UseGalaxy.no": 22, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 \u2013 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 16, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 16, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 16, - "Tools available on UseGalaxy.no": 16, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 3, - "Available on UseGalaxy.fr": 2, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 2, - "Tools available on UseGalaxy.eu": 3, - "Tools available on UseGalaxy.fr": 2, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 14, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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": 1, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 \u2013 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.5.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.3.3", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 533, - "Total tool usage (usegalaxy.eu)": 760352 - }, - { - "Galaxy wrapper id": "snpfreqplot", - "Galaxy tool ids": [ - "snpfreqplot" - ], - "Description": "Generates a heatmap of allele frequencies grouped by variant type for SARS-CoV-2 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/galaxyproject/tools-iuc/tree/master/tools/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": [ - "rnaspades", - "spades", - "biosyntheticspades", - "metaspades", - "rnaviralspades", - "plasmidspades", - "coronaspades", - "metaviralspades", - "metaplasmidspades" - ], - "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/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 9, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "No. of tool users (2022-2023) (usegalaxy.eu)": 34, - "Total tool usage (usegalaxy.eu)": 446 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 13, - "Tools available on UseGalaxy.no": 13, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 12, - "Tools available on UseGalaxy.no": 12, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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": 2, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "ToolShed categories": [ - "Sequence Analysis" - ], - "ToolShed id": "tasmanian_mismatch", - "Galaxy wrapper owner": "iuc", - "Galaxy wrapper source": "https://github.com/nebiolabs/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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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.2.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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.8.5.0", - "Conda id": "tooldistillator", - "Conda version": "0.8.5.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.3", - "Conda id": "tracegroomer", - "Conda version": "0.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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "Up-to-date", - "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.1", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 13, - "Tools available on UseGalaxy.no": 12, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": null, - "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": "466", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "Up-to-date", - "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": "377", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 22, - "Total tool usage (usegalaxy.eu)": 285 - }, - { - "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": "455", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 48, - "Total tool usage (usegalaxy.eu)": 502 - }, - { - "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": "Up-to-date", - "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": "447", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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.0", - "Conda id": "unicycler", - "Conda version": "0.5.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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" - ], - "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" - ], - "Available on UseGalaxy.org (Main)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 2, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 3, - "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.0+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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": null, - "bio.tool description": null, - "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", - "Conda id": "virheat", - "Conda version": "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.15.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 2, - "Available on UseGalaxy.eu": 4, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 4, - "Tools available on UseGalaxy.org.au": 2, - "Tools available on UseGalaxy.eu": 4, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 1, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 265, - "Total tool usage (usegalaxy.eu)": 972774 - } -] \ No newline at end of file diff --git a/results/repositories03.list_tools.tsv b/results/repositories03.list_tools.tsv deleted file mode 100644 index ec7c5e9f..00000000 --- a/results/repositories03.list_tools.tsv +++ /dev/null @@ -1,610 +0,0 @@ -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) -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 0 0 0 1 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 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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.18 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 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 Up-to-date 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.7 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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.3 adapterremoval 2.3.3 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 0 0 0 1 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 0 1 0 1 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 4 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 0 0 0 1 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 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 0 0 0 1 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.6 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 0 0 0 19 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 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 0 0 0 1 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 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 -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 To update 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 Annotation 1 1 1 1 1 1 1 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 1 1 1175 25975 -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 -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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 123 8175 -assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. To update 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 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 -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 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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/main/tools/b2btools 3.0.5+galaxy0 b2btools 3.0.6 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 0 0 0 1 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 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 2 4 0 4 2 4 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 4 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 0 0 0 1 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 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 0 2 2 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 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 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 -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 Sequence Analysis barrnap iuc 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 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 1 0 160 3938 -basil basil Breakpoint detection, including large insertions To update 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 0 1 0 1 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 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 455 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 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.06 bbmap 39.06 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 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 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 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 0 0 0 7 7 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 0 0 0 3 0 0 28 -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 0 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 1 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 0 0 0 1 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 0 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 0 37 37 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 0 0 0 1 0 123 1194 -berokka berokka Berokka is used to trim, circularise, orient & filter long read bacterial genome assemblies. To update 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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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! Up-to-date 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.7 2 0 2 0 2 0 2 0 0 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 0 2 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 1 1 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 0 0 -biscot biscot Bionano scaffolding correction tool To update 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 0 1 0 78 511 -blastxml_to_gapped_gff3 blastxml_to_gapped_gff3 BlastXML to gapped GFF3 To update 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 Read mapping Mapping, Genomics, Mapping 1 1 1 1 1 1 1 1 1 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 1 0 0 0 0 0 1 1 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 2.9 bracken 2.9 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.38.3 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 50 1871 -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 -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 To update 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.5.0 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 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 0 0 8 1393 -cami_amber 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.4 cami-amber 2.0.4 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 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 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 0 1 1 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 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 -charts charts Enables advanced visualization options in Galaxy Charts To update 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 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.2 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 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 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 0 0 0 2 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.6 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 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 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 -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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 1 11 0 0 0 0 0 0 11 0 0 0 0 0 0 0 0 11 11 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 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 -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 0.1.12 clair3 1.0.8 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 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 0 1 1 651 46793 -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 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.0.4 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 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 0 0 0 17 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 0 0 0 1 1 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 0 0 0 3 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 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 0 0 0 1 1 18 251 -collection_column_join collection_column_join Column Join on Collections To update 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1483 20857 -collection_element_identifiers collection_element_identifiers Extract element identifiers of a collection To update 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 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 912 5059 -column_maker Add_a_column1 Compute an expression on every row To update 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.0 python 1 1 1 1 1 1 1 1 0 0 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 0 1 1 2379 3883271 -column_order_header_sort column_order_header_sort Sort Column Order by heading To update 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 0 0 0 1 1 80 3258 -column_remove_by_header column_remove_by_header Remove columns by header To update 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 0 0 0 1 1 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 0 0 0 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 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 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 0 0 0 1 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 0 0 0 5 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 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 6 5 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 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 -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 -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 -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 -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 -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 -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 To update 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.8 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 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 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 0 0 0 1 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 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 0 0 10 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 10 10 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 0 0 0 2 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 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 0 0 1 0 3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3066 739298 -decontaminator decontaminator Deep Learning method for novel virus detection in sequencing data decontaminator decontaminator 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 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 0 0 0 1 0 182 1889 -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 -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 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 6 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 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 -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 -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 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 0 3 3 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 To update 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 2.10.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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 To update 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.3.5 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 0 0 0 5 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 126 3934 -ebi_tools ebi_metagenomics_run_downloader, 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.0 six 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 89 2432 -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 -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 -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 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 0 107 107 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 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 0 0 0 1 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 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 0 0 0 3 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.11.0 1 0 1 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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+galaxy0 falco 1.2.2 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 Up-to-date 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 377 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 0 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 0 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 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 0 1 1 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 0 0 0 1 1 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 1 1 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 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 0 1 1 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 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 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 0 1 1 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 0 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 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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+galaxy0 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 1 0 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 1 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 1 1 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 0 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 0 1 1 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 1 0 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 0 1 1 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 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 0 1 1 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 0 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 0 1 1 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 1 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 0 0 0 1 1 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 1 0 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 0 1 1 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 1 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 0 0 0 1 1 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 1 0 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 0 1 1 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 1 0 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 0 1 1 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 1 0 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 0 1 1 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 0 0 0 1 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 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 -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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 1 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 0 0 2 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 0 2 2 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 44 665 -freyja freyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variants lineage abundances estimation freyja freyja 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 2 0 4 0 2 0 4 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 0 0 0 0 0 0 0 4 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 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 0 0 0 5 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 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 2 2 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 0 1 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 1 0 0 1 1 1 4 -genehunter_modscore genehunter_modscore Maximised LOD score pedigree analysis utility To update https://www.helmholtz-muenchen.de/en/ige/service/software-download/genehunter-modscore/index.html 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 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 0 0 0 1 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 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 genomescope2 2.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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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.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 1 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 0 0 0 2 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 0 0 1 0 5 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 5 5 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 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 0 0 0 4 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 5 5 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 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 432 9277 -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 0 0 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 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 447 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 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 145 3340 -gvcftools gvcftools_extract_variants 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 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 0 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 -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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 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 0 0 0 1 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 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 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1953 44240 -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 -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 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_hictadclassifier, hicexplorer_hictraintadclassifier, hicexplorer_hictransform, hicexplorer_hicvalidatelocations HiCExplorer: Set of programs to process, analyze and visualize Hi-C data. To update 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.2 hicexplorer 3.7.4 0 5 40 4 0 5 40 4 0 0 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 0 36 33 1085 66005 -hicstuff hicstuff_pipeline 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 0 0 -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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 0 12 12 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 5 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 0 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 0 1 1 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 12 13 13 6 12 13 13 0 0 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 0 13 13 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.1.8 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 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 0 0 2 0 0 0 0 0 0 0 0 17 12 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 0 0 0 1 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 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 0 0 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 1 1 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 0 0 0 1 1 12 1506 -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 0 0 0 2 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 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 58 52965 -intermine_galaxy_exchange galaxy_intermine_exchange InterMine Exporter To update 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 0 0 0 1 1 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 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 1 1 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.11.0 Sequence analysis 1 1 1 1 1 1 1 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 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 0 0 0 2 2 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.4 iqtree 2.3.4 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 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 5 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 5 5 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 0 0 0 3 3 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 0 0 0 1 1 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 0 0 2 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 91 1138 -join_files_by_id join_files_by_id This tool will join datasets according to a column with identifier To update 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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.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 -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 0 0 0 1 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 8 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 0 0 0 1 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 Up-to-date 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 2.3.2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 38 319 -kma kma_map Map with KMA Up-to-date 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.14 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 -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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 5 5 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 1 6 6 6 1 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 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 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 1548 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 0 0 0 5 5 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 0 0 2 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 0 0 0 1 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 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 5 5 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 0 0 0 1 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 0 0 0 2 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 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 0.99.12 maaslin2 1.16.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 0 0 0 1 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 0 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 0 9 9 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 0 1 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 1 0 0 1 1 3 21 -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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 0 0 0 1 1 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 0 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 3 3 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 1 0 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 1 0 0 0 1 1 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 0 1 1 1 0 1 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 1 1 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 0 0 0 7 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.4.1 meme 5.5.5 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 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 0 4 4 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 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 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 To update 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.0.6 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 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 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 0 1 1 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 0 0 0 2 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 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 0 129 129 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 0 0 0 1 1 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/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 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 0 0 0 1 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.22.3 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 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 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 0 0 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 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 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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.42.0 nanoplot 1.42.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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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.1 entrez-direct 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 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 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 0 8 8 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.0 ncbi-fcs-gx 0.5.0 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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 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 0 0 0 1 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 0 0 0 1 1 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.1 Operation 1 0 1 1 1 0 1 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 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 10 10 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 2 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 0 0 0 17 17 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 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 0 0 0 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 To update 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.13.1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 4 4 0 0 4 4 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 0 0 0 3 3 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 0 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 0 1 1 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_samtofastq, picard_replacesamheader, picard_fastqtosam picard_samtofastq Create a FASTQ file. Formatting Sequencing Up-to-date 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.1.1 Formatting Sequencing 31 31 31 31 31 31 31 31 0 0 0 29 0 0 31 0 0 0 0 0 0 0 29 4 31 0 0 31 0 0 0 31 0 0 0 0 0 0 0 0 31 31 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 0 0 0 1 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 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 To update 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.1 picrust2 2.5.2 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 0 0 0 7 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 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 1 0 8 22 -plink plink PLINK is a free, open-source 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 0 0 0 1 1 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 0 1 1 0 0 1 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 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 13 13 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 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 0 0 0 0 0 -progressivemauve progressivemauve, xmfa2gff3 Mauve/ProgressiveMauve Multiple Sequence Aligner To update 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 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 0 2 2 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 1 0 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 0 1 1 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.5 prot-scriber 0.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 0 0 0 1 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 Up-to-date 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.1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 200 3320 -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 -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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.0 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 2 2 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 0 0 31 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 31 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 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 0 0 -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 -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 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 0 1 1 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 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 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.0 python 3 3 3 1 3 3 3 1 0 0 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 0 3 3 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 0 0 0 1 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 0 0 0 5 5 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 0 1 1 0 0 1 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 1 1 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 0 1 1 1 0 1 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 1 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 0.8.0 rasusa 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 1 1 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 0 0 0 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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.0 recentrifuge 1.14.0 Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 0 1 1 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 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 0 0 0 1 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 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 -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 -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.2.3 rnaquast 2.2.3 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 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 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 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 0 0 0 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 0 22 22 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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/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 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 0 0 0 6 6 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 0 0 0 5 5 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 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 -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 -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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 6 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 3 2 0 2 3 2 0 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 0 3 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 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 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 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 0 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 1 0 0 1 1 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 0 0 0 4 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 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 1 1 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 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 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 0 0 0 2 2 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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.5.3 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 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.3.3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 3 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 5 5 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 5 5 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 533 760352 -snpfreqplot snpfreqplot Generates a heatmap of allele frequencies grouped by variant type for SARS-CoV-2 data To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 8 0 0 0 0 0 8 0 0 8 0 0 0 8 0 0 0 0 0 0 0 0 8 8 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 rnaspades, spades, biosyntheticspades, metaspades, rnaviralspades, plasmidspades, coronaspades, metaviralspades, metaplasmidspades 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 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 0 9 3 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 34 446 -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 0 0 0 1 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 0 0 0 1 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 0 0 2 0 3 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 13 13 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 0 0 0 12 12 238 7292 -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 -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 0 0 -strelka strelka_germline, strelka_somatic 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 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 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 0 0 0 1 1 59 2623 -structureharvester structureharvester for parsing STRUCTURE outputs and for performing the Evanno method Up-to-date 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 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 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 0 0 0 1 0 2 30 -table_compute table_compute Perform general-purpose table operations To update 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 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 7 164 -tasmanian_mismatch tasmanian_mismatch Analysis of positional mismatches Up-to-date Sequence Analysis tasmanian_mismatch iuc https://github.com/nebiolabs/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 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 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 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 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 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 Up-to-date 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.2.1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 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 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 4 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.8.5.0 tooldistillator 0.8.5.0 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 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.3 tracegroomer 0.1.3 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 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 0 0 0 4 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 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 -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 0 0 0 5 5 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 0 0 0 1 1 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 0 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 0 1 1 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 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 -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 -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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 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 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 0 0 0 1 1 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 455 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 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 88 1408 -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/main/tools/ucsc_blat 377 ucsc-blat 466 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 0 0 1 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 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 5 5 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.0 unicycler 0.5.0 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 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 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 0 0 0 3 3 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 1 1 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 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 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 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 -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 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 0 0 2 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 1 0 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 0 1 1 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 0 0 0 1 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 0 0 0 3 3 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.0+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 0 0 -virheat virheat generates a heatmap of allele frequencies from vcf files virheat virheat 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 virheat 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 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 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 8 8 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 8 8 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 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 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 0 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 0 1 1 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 Up-to-date 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 447 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 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.15.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 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 2 90 diff --git a/results/repositories04.list_tools.json b/results/repositories04.list_tools.json deleted file mode 100644 index b052a3b8..00000000 --- a/results/repositories04.list_tools.json +++ /dev/null @@ -1,21783 +0,0 @@ -[ - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.15.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": "To update", - "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": "2.10.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 11, - "Tools available on UseGalaxy.no": 9, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "No. of tool users (2022-2023) (usegalaxy.eu)": 17, - "Total tool usage (usegalaxy.eu)": 645 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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\u00f6r", - "bio.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 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": "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": "2.255.0", - "Conda id": "morpheus", - "Conda version": "288", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": 141, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 8, - "Tools available on UseGalaxy.org.au": 34, - "Tools available on UseGalaxy.eu": 141, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 141, - "Tools available on UseGalaxy.no": 124, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 4, - "Available on UseGalaxy.eu": 6, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 4, - "Tools available on UseGalaxy.eu": 6, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 6, - "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.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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.2.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 25, - "Total tool usage (usegalaxy.eu)": 86 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 3, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 15, - "Tools available on UseGalaxy.no": 9, - "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": 1, - "Available on UseGalaxy.eu": 10, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 10, - "Tools available on UseGalaxy.org.au": 1, - "Tools available on UseGalaxy.eu": 10, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 10, - "Tools available on UseGalaxy.no": 10, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "448", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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": "466", - "EDAM operation (no superclasses)": [], - "EDAM topic (no superclasses)": [], - "Available on UseGalaxy.org (Main)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.5.2", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "0.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": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 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\u2019t 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 6, - "Tools available on UseGalaxy.no": 2, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 8, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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" - ], - "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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 7, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 7, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 5, - "Tools available on UseGalaxy.no": 5, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 4, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 264, - "Total tool usage (usegalaxy.eu)": 3266 - }, - { - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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)": 22, - "Available on UseGalaxy.org.au": 27, - "Available on UseGalaxy.eu": 27, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 22, - "Tools available on UseGalaxy.org.au": 27, - "Tools available on UseGalaxy.eu": 27, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 14, - "Tools available on UseGalaxy.no": 13, - "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)": 0, - "Available on UseGalaxy.org.au": 1, - "Available on UseGalaxy.eu": 6, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 1, - "Tools available on UseGalaxy.eu": 6, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 2, - "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)": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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)": 0, - "Available on UseGalaxy.org.au": 0, - "Available on UseGalaxy.eu": 14, - "Available on UseGalaxy.fr": 11, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 14, - "Tools available on UseGalaxy.fr": 11, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": "To update", - "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.25.0", - "Conda id": "matchms", - "Conda version": "0.26.4", - "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": 9, - "Available on UseGalaxy.eu": 14, - "Available on UseGalaxy.fr": 11, - "Tools available on UseGalaxy.org (Main)": 2, - "Tools available on UseGalaxy.org.au": 9, - "Tools available on UseGalaxy.eu": 14, - "Tools available on UseGalaxy.fr": 11, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 9, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 10, - "Total tool usage (usegalaxy.eu)": 187 - }, - { - "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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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.26.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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 2, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 2, - "Total tool usage (usegalaxy.eu)": 16 - }, - { - "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.12.0", - "Conda id": "r-recetox-aplcms", - "Conda version": "0.12.0", - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 8, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 1, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 1, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 0, - "Available on UseGalaxy.eu": 0, - "Available on UseGalaxy.fr": 0, - "Tools available on UseGalaxy.org (Main)": 0, - "Tools available on UseGalaxy.org.au": 0, - "Tools available on UseGalaxy.eu": 0, - "Tools available on UseGalaxy.fr": 0, - "Tools available on ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 4, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 1, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 6, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 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 CorGAT": 0, - "Tools 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 16, - "Tools available on UseGalaxy.no": 15, - "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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available 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 Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 1, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 3, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 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 ANASTASIA": 0, - "Tools available on APOSTL": 0, - "Tools available on ARGs-OAP": 0, - "Tools available on BF2I-MAP": 0, - "Tools available on BioBix": 0, - "Tools available on CIRM-CFBP": 0, - "Tools available on Center for Phage Technology (CPT)": 0, - "Tools available on ChemFlow": 0, - "Tools available on Coloc-stats": 0, - "Tools available on CorGAT": 0, - "Tools available on CropGalaxy": 0, - "Tools available on Dintor": 0, - "Tools available on FreeBioinfo": 0, - "Tools available on GASLINI": 0, - "Tools available on Galaxy@AuBi": 0, - "Tools available on Galaxy@Pasteur": 0, - "Tools available on GalaxyTrakr": 0, - "Tools available on Genomic Hyperbrowser": 0, - "Tools available on GigaGalaxy": 0, - "Tools available on HyPhy HIV NGS Tools": 0, - "Tools available on IPK Galaxy Blast Suite": 0, - "Tools available on ImmPort Galaxy": 0, - "Tools available on InteractoMIX": 0, - "Tools available on MISSISSIPPI": 0, - "Tools available on Mandoiu Lab": 0, - "Tools available on MiModD NacreousMap": 0, - "Tools available on Oqtans": 0, - "Tools available on Palfinder": 0, - "Tools available on PepSimili": 0, - "Tools available on PhagePromotor": 0, - "Tools available on Protologger": 0, - "Tools available on UseGalaxy.be": 0, - "Tools available on UseGalaxy.cz": 0, - "Tools available on UseGalaxy.no": 0, - "No. of tool users (2022-2023) (usegalaxy.eu)": 0, - "Total tool usage (usegalaxy.eu)": 0 - } -] \ No newline at end of file diff --git a/results/repositories04.list_tools.tsv b/results/repositories04.list_tools.tsv deleted file mode 100644 index a4833a41..00000000 --- a/results/repositories04.list_tools.tsv +++ /dev/null @@ -1,290 +0,0 @@ -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) -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 0 0 0 2 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 0 0 0 5 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 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 0 0 0 5 4 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 0 0 0 1 1 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 0 0 0 1 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 5 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 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 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 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 0 0 0 3 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 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 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 0 0 0 1 1 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 448 0 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 1 1 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 466 0 0 0 0 0 0 0 0 0 0 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 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 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 0 0 0 4 3 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 0 0 0 1 1 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 0 0 0 5 5 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 To update 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 2.10.0 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 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 11 9 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 0 0 0 2 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 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 0 0 0 1 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 0 0 0 3 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 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 0 0 0 1 1 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 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 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 4 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.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 -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 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 0 0 0 1 1 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 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 6 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 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 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 0 0 0 1 1 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 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 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 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 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 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 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 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 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 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 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 -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 0 0 3 0 0 0 3 1 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 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 0 0 0 7 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 0 0 0 1 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 0 0 0 1 1 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 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 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 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 0 0 0 2 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 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 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 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 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 0 0 0 1 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 0 0 0 1 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 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 0 0 1 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 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 0 0 0 1 1 17 645 -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 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 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 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 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 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 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 8 8 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 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 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 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 0 0 0 1 1 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 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 9 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 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 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 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 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 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 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 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 -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 -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 0 0 0 1 1 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 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 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 0 0 0 2 2 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 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 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 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 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 0 0 0 1 1 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 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 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 0 1 1 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 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 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 0 0 2 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 1 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 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 To update 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.25.0 matchms 0.26.4 Spectral library search, Format validation, Filtering Metabolomics 2 9 14 11 2 9 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 0 0 0 9 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 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 1 10 0 10 1 10 0 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 0 0 0 10 10 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 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 6 6 104 2522 -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 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 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 1 1 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 0 0 264 3266 -morpheus morpheus Morpheus MS Search Application To update Proteomics morpheus galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus 2.255.0 morpheus 288 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 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 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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.26.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 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 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 0 0 0 1 1 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 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 6 0 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 0 16 15 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 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 0 0 0 1 0 4 45 -ocean argo_getdata 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 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 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 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 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 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 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 0 0 0 1 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 141 0 8 34 141 0 0 0 0 0 0 0 0 0 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 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 0 0 0 1 1 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 0 0 0 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 1 1 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 0 0 0 3 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 0 0 0 1 1 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 0 0 0 4 2 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 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 0 0 0 4 4 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 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 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 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 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 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 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 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 0 0 0 1 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 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 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 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 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 0 0 0 1 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 0 0 0 1 1 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 4 6 0 0 4 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 33 2509 -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.2 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 0 0 0 1 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 0 0 0 1 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 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 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 0 0 0 1 1 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 0 0 0 1 1 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 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.2.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 0 0 0 1 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 0 0 0 2 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 0 0 0 1 1 14 175 -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.12.0 r-recetox-aplcms 0.12.0 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 0 0 0 8 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 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 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 0 0 0 1 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 0 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 0 2 2 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 0 0 0 7 7 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 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 2 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 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 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 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 0 0 0 1 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 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 0 0 0 1 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 0 0 0 1 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 0 0 4 0 0 0 0 0 0 0 0 1 1 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 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 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 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 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 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 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 -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 -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 -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 -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 -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 -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 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 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 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 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 -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 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 0 0 0 1 1 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 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 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 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 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 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 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 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 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 0 0 0 1 1 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 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 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 0 0 0 7 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 0 0 0 5 5 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 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 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 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 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 0 0 0 1 1 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 0 0 0 1 1 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.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 -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 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 1 1 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 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 0 0 0 1 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 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 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 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 0 0 0 4 4 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 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 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 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 1 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 0 0 0 6 2 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 0 0 0 1 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 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 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 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 0 0 1 1 0 0 0 0 0 0 1 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 0 0 diff --git a/results/spoc/index.html b/results/spoc/index.html deleted file mode 100644 index 4eb38539..00000000 --- a/results/spoc/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - Simple HTML Page - - - -
-

SPOC ressources from the Galaxy Codex

-

Tools

- - - -

Training

- - -
- - diff --git a/results/spoc/tools.html b/results/spoc/tools.html deleted file mode 100644 index e65fd810..00000000 --- a/results/spoc/tools.html +++ /dev/null @@ -1,7063 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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/results/spoc/tools.tsv b/results/spoc/tools.tsv deleted file mode 100644 index b1844867..00000000 --- a/results/spoc/tools.tsv +++ /dev/null @@ -1,100 +0,0 @@ -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/results/spoc/tools_filtered_by_ts_categories.tsv b/results/spoc/tools_filtered_by_ts_categories.tsv deleted file mode 100644 index b1844867..00000000 --- a/results/spoc/tools_filtered_by_ts_categories.tsv +++ /dev/null @@ -1,100 +0,0 @@ -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/results/spoc/tools_wordcloud.png b/results/spoc/tools_wordcloud.png deleted file mode 100644 index 151a4b4a..00000000 Binary files a/results/spoc/tools_wordcloud.png and /dev/null differ diff --git a/results/tools.html b/results/tools.html deleted file mode 100644 index 7a792a6d..00000000 --- a/results/tools.html +++ /dev/null @@ -1,28140 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ExpandGalaxy wrapper idGalaxy wrapper versionConda versionConda idStatusbio.tool idbio.tool nameEDAM operationEDAM topicDescriptionbio.tool descriptionbiiiStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper source
askor0.23.58.1bioconductor-limmaTo updateAskoR links EdgeR and AskOmicsTo updatehttps://github.com/askomics/askoRTranscriptomicsaskor_degenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/askor
baric_archive1.1.0To updateA 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_archive
braker2.1.6To updateBRAKER 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/braker
braker33.0.8To updateBRAKER3 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 annotationbraker3genouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/braker
feelnc2asko0.11.7.8perl-bioperlTo updateConvert FeelNC GTF to GFF3To updatehttps://github.com/tderrien/FEELncConvert Formatsfeelnc2askogenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/feelnc2asko
gcms2isocor0.1.0openjdkTo updateConversion from GCMS PostRun Analysis to IsocorTo updateMetabolomicsgcms2isocorgenouest
get_pairs0.3pythonTo updateSeparate paired and unpaired reads from two fastq filesTo updateFastq Manipulationget_pairsgenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs
helixer0.3.2To updateGene calling with Deep Neural NetworksTo updatehttps://github.com/weberlab-hhu/HelixerGenome annotationhelixergenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/helixer
logol1.7.81.7.8logolUp-to-dateLogol 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/logol
meneco1.5.21.5.2menecoUp-to-dateMeneco 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/meneco
miranda2asko0.2perlTo updateConverts miRanda output into AskOmics formatTo updateConvert Formatsmiranda2askogenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/miranda2asko
openlabcds2csv0.1.0openjdkTo updateCreates a summary of several "Internal Standard Report" OpenLabCDS results.To updateMetabolomicsopenlabcds2csvgenouest
peptimapper2.0To updateProteogenomics workflow for the expert annotation of eukaryotic genomesTo updatehttps://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-019-5431-9Proteomicsgenouest
Ensembl-REST0.1.2requestsTo updateA 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-REST
GAFA0.3.1To updateGene Align and Family AggregatorTo updatehttp://aequatus.tgac.ac.ukVisualizationgafaearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA/
TreeBest1.9.2.post01.9.2.post1treebestTo updateTreeBeST bestTo updatehttp://treesoft.sourceforge.net/treebest.shtmlPhylogeneticstreebest_bestearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest
apoc1.0+galaxy11b16apocTo updateLarge-scale structural comparison of protein pocketsTo updatehttp://cssb.biology.gatech.edu/APocComputational chemistryapocearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/apoc/
blast_parser0.1.2To updateConvert 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_parser
ete3.1.23.1.1ete3To updateAnalyse phylogenetic trees using the ETE ToolkitTo updatehttp://etetoolkit.org/Phylogeneticseteearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete
export_to_cluster0.0.2EXPORT_DIR_PREFIXTo updateExport datasets to clusterTo updatehttps://github.com/TGAC/earlham-galaxytools/Data Exportexport_to_clusterearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/export_to_cluster/
gblocks0.91b0.91bgblocksUp-to-dateGblocksUp-to-datehttp://molevol.cmima.csic.es/castresana/Gblocks.htmlSequence Analysisgblocksearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblocks
gstf_preparation0.4.3pythonTo updateGeneSeqToFamily preparation converts data for the workflowTo updatehttps://github.com/TGAC/earlham-galaxytools/Convert Formatsgstf_preparationearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/gstf_preparation
hcluster_sg0.5.1.10.5.1hcluster_sgTo updateHierarchically clustering on a sparse graphTo updatehttps://github.com/douglasgscofield/hclusterPhylogeneticshcluster_sgearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg
hcluster_sg_parser0.2.1To updateConverts 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_parser
lotus22.322.32lotus2Up-to-datelotus2lotus2Sequence feature detectionMetagenomicsLotuS2 OTU processing pipelineLotuS2 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.Up-to-datehttp://lotus2.earlham.ac.uk/Metagenomicslotus2earlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2
miranda3.3a+galaxy13.3amirandaTo updateFinds potential target sites for miRNAs in genomic sequencesTo updatehttp://www.microrna.org/RNAmirandaearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/miranda
plotheatmap1.01.64.0bioconductor-preprocesscoreTo updateThis 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/plotheatmap
rdock1.02013.1rDockTo updateDocking ligands to proteins and nucleic acidsTo updatehttp://rdock.sourceforge.net/Computational chemistryrdockearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/rdock/
replace_chromosome_names0.1pythonTo updateReplace chromosome namesTo updateText Manipulationreplace_chromosome_namesearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/replace_chromosome_names/
rsat_filter_snps0.1To updateFilter 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_snps
smart_domains0.1.01.7.8perl-bioperlTo updateSMART domainsTo updatehttp://smart.embl.de/Sequence Analysissmart_domainsearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domains
smina1.02017.11.9sminaTo updatesmina 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/
t_coffee13.45.0.484626413.46.0.919e8c6bt-coffeeTo updateT-CoffeeTo updatehttp://www.tcoffee.org/Sequence Analysist_coffeeearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee
abacas1.13.23mummerTo updateOrder and Orientate ContigsTo updatehttps://github.com/phac-nml/abacasAssemblyabacasnmlhttps://github.com/phac-nml/abacas
assemblystats1.1.01.7.8perl-bioperlTo updateSummarise an assembly (e.g. N50 metrics)To updatehttps://github.com/phac-nml/galaxy_toolsAssemblyassemblystatsnmlhttps://github.com/phac-nml/galaxy_tools
bam2mappingstats1.1.0perlTo updateGenerates mapping stats from a bam file.To updatehttps://github.com/phac-nml/galaxy_toolsAssemblybam2mappingstatsnmlhttps://github.com/phac-nml/galaxy_tools
bamclipper1.0.01.0.0bamclipperUp-to-dateSoft-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/bamclipper
biohansel2.4.02.6.1bio_hanselTo updateHeidelberg and Enteritidis SNP ElucidationTo updatehttps://github.com/phac-nml/biohanselSequence Analysisbiohanselnmlhttps://github.com/phac-nml/biohansel
biohansel_bionumeric_converter0.2.0pandasTo updateConvert BioHansel output data to a Bionumerics friendly formTo updatehttps://github.com/phac-nml/galaxy_toolsText Manipulationbiohansel_bionumeric_converternml
bundle_collections1.3.02.54perl-getopt-longTo updateTool to bundle up list collection into a single zip to be downloadTo updateSequence Analysisbundle_collectionsnml
collapse_collection5.1.0gawkTo updateCollection tool that collapses a list of files into a single datasset in order of appears in collectionTo updateSequence Analysiscollapse_collectionsnml
combineJSON0.1To updateJSON collection tool that takes multiple JSON data arrays and combines them into a single JSON array.To updateSequence Analysiscombine_jsonnml
combine_assembly_stats1.02.54perl-getopt-longTo updateCombine multiple Assemblystats datasets into a single tabular reportTo updatehttps://github.com/phac-nml/galaxy_toolsAssemblycombine_assemblystatsnmlhttps://github.com/phac-nml/galaxy_tools
combine_tabular_collection0.1To updateCombine Tabular Collection into a single fileTo updateSequence Analysiscombine_tabular_collectionnml
concat_paired0.2To updateConcatenate paired datasetsTo updatehttps://github.com/phac-nml/concatText Manipulationconcat_pairednmlhttps://github.com/phac-nml/concat
cryptogenotyper1.01.0cryptogenotyperUp-to-dateCryptoGenotyper 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/CryptoGenotyper
csvtk0.20.00.29.0csvtkTo updateRapid data investigation and manipulation of csv/tsv filesTo updatehttps://bioinf.shenwei.me/csvtk/Text Manipulationcsvtknmlhttps://github.com/shenwei356/csvtk
ectyper1.0.01.0.0ectyperUp-to-dateEC-Typer - in silico serotyping of Escherichia coli speciesUp-to-datehttps://github.com/phac-nml/ecoli_serotypingSequence Analysisectypernmlhttps://github.com/phac-nml/ecoli_serotyping
fasta2bed1.0.01.7.8perl-bioperlTo updateConvert multiple fasta file into tabular bed file formatTo updatehttps://github.com/phac-nml/galaxy_toolsSequence Analysisfasta2bednmlhttps://github.com/phac-nml/galaxy_tools
fasta_extract1.1.01.7.8perl-bioperlTo updateextract 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_extract
fastqc_stats1.21.7.8perl-bioperlTo updateSummary multiple FastQC into a single tabular line reportTo updatehttps://github.com/phac-nml/galaxy_toolsSequence Analysisfastqc_statsnmlhttps://github.com/phac-nml/galaxy_tools
feht0.1.01.1.0fehtTo updateAutomatically identify makers predictive of groups.To updatehttps://github.com/phac-nml/galaxy_toolsSequence Analysisfehtnmlhttps://github.com/phac-nml/galaxy_tools
filter_spades_repeats1.0.11.7.8perl-bioperlTo updateRemove short and repeat contigs/scaffoldsTo updatehttps://github.com/phac-nml/galaxy_tools/Assemblyfilter_spades_repeatsnmlhttps://github.com/phac-nml/galaxy_tools/
getmlst0.1.4.10.2.0srst2To updateDownload MLST datasets by species from pubmlst.orgTo updateSequence Analysisgetmlstnml
gnali1.1.01.1.0gnaliUp-to-dateA tool to find nonessential, loss-of-function gene variantsUp-to-datehttps://github.com/phac-nml/gnali/Variant Analysisgnalinmlhttps://github.com/phac-nml/gnali/
hivtrace1.0.11.5.0hivtraceTo updateAn 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/hivtrace
kaptive0.3.02.0.6kaptiveTo updateKaptive reports information about capsular (K) loci found in genome assemblies.To updateSequence Analysiskaptivenml
kat_filter2.32.4.2katTo updateFiltering kmers or reads from a database of kmers hashesTo updateSequence Analysiskat_filternml
kat_sect2.32.4.2katTo updateSEquence Coverage estimator Tool. Estimates the coverage of each sequence in a file using K-mers from another sequence file.To updatekat_sectnml
mauve_contig_mover1.0.102.4.0.r4736mauveTo updateOrder 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_mover
mob_suite3.0.33.1.8mob_suiteTo updateMOB-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-suite
mrbayes1.0.23.2.7mrbayesTo updateA program for the Bayesian estimation of phylogeny.To updateSequence Analysismrbayesnml
mykrobe_parser0.1.4.1r-baseTo updateRScript to parse the results of mykrobe predictor.To updatehttps://github.com/phac-nml/mykrobe-parserSequence Analysismykrobe_parsernmlhttps://github.com/phac-nml/mykrobe-parser
pangolin1.1.144.3pangolinTo updatePhylogenetic Assignment of Named Global Outbreak LINeagesTo updatehttps://github.com/hCoV-2019/pangolinSequence Analysispangolinnmlhttps://github.com/hCoV-2019/pangolin
patrist0.1.2pythonTo updateExtract Patristic Distance From a TreeTo updatehttps://gist.github.com/ArtPoon/7330231e74201ded54b87142a1d6cd02Phylogeneticspatristnmlhttps://github.com/phac-nml/patrist
plasmid_profiler0.1.6rTo updateExplores plasmid content in WGS dataTo updateplasmid_profilernml
plasmid_profiler_suiteTo updatePlasmid Profiler suite defining all dependencies for Plasmid ProfilerTo updateSequence Analysissuite_plasmid_profilernml
plasmidspades1.13.15.5spadesTo updateGenome assembler for assemblying plasmidTo updateAssemblyplasmidspadesnml
pneumocat1.2.11.2.1pneumocatUp-to-datePneumococcal Capsular Typing of illumina fastq readsUp-to-datehttps://github.com/phe-bioinformatics/PneumoCaTVariant Analysispneumocatnmlhttps://github.com/phe-bioinformatics/PneumoCaT
promer1.2pythonTo updateAligns two sets of contigs and reports amino acid substitutions between themTo updatehttps://github.com/phac-nml/promerAssemblypromernmlhttps://github.com/phac-nml/promer
pseudogenome1.0.01.7.8perl-bioperlTo updateCreate 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 Analysispseudogenomenml
quasitools0.7.00.7.0quasitoolsUp-to-dateA collection of tools for analysing Viral QuasispeciesUp-to-datehttps://github.com/phac-nml/quasitoolsSequence Analysisquasitoolsnmlhttps://github.com/phac-nml/quasitools
refseq_masher0.1.20.1.2refseq_masherUp-to-dateFind 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_masher
seqtk_nml1.0.11.4seqtkTo updateTool to downsample fastq readsTo updatehttps://github.com/lh3/seqtkSequence Analysisseqtk_nmlnmlhttps://github.com/phac-nml/snvphyl-galaxy
sistr_cmd1.1.11.1.1sistr_cmdUp-to-dateSISTR in silico serotyping toolUp-to-datehttps://github.com/phac-nml/sistr_cmdSequence Analysissistr_cmdnml
smalt0.7.60.7.6smaltUp-to-dateSMALT aligns DNA sequencing reads with a reference genome.Up-to-datehttp://www.sanger.ac.uk/science/tools/smalt-0Sequence Analysissmaltnmlhttps://sourceforge.net/projects/smalt/
spades_header_fixer1.1.2+galaxy1sedTo updateFixes Spades Fasta idsTo updatehttps://github.com/phac-nml/galaxy_toolsFasta Manipulationspades_fasta_header_fixernmlhttps://github.com/phac-nml/galaxy_tools
spatyper0.3.30.3.3spatyperUp-to-dateDetermines 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/spatyper
spolpred1.0.1spolpredTo updateA program for predicting the spoligotype from raw sequence readsTo updateSequence Analysisspolprednml
srst20.3.70.2.0srst2To updateShort Read Sequence Typing for Bacterial PathogensTo updateSequence Analysissrst2nml
staramr0.10.00.10.0staramrUp-to-dateScan 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/staramr
stringmlst1.1.00.6.3stringMLSTTo updateRapid and accurate identification of the sequence type (ST)To updateSequence Analysisstringmlstnml
tree_relabeler1.1.01.7.8perl-bioperlTo updateRelabels the tips of a newick formatted tree.To updateText Manipulationtree_relabelernmlhttps://github.com/phac-nml/galaxy_tools/blob/master/tools/tree_relabeler
wade0.2.5+galaxy10.2.6wadeTo updateidentify regions of interestTo updatehttps://github.com/phac-nml/wadeSequence Analysiswadenmlhttps://github.com/phac-nml/wade
camera1.48.00.4_1r-snowTo updateTo updateMetabolomicscameraworkflow4metabolomics
correlation_analysis1.0.1+galaxy01.1_4r-batchTo update[Metabolomics][W4M] Metabolites Correlation AnalysisTo updatehttp://workflow4metabolomics.orgMetabolomicscorrelation_analysisworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/correlation_analysis/
genformr8genformTo updategenform: 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/
influx_data_manager1.0.01.0.0influx-si-data-managerUp-to-dateHandling influx_si data inputs in Galaxy workflowsUp-to-datehttps://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m/Metabolomicsinflux_si_data_managerworkflow4metabolomicshttps://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m/tree/main/tools/influx_data_manager
influx_si7.0.17.0.2influx_siTo updatemetabolic flux estimation based on [in]stationary labelingTo updatehttps://github.com/sgsokol/influxMetabolomicsinflux_siworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/influx_si/
ipo1.10.01.28.0bioconductor-ipoTo update[W4M][LC-MS] IPOTo updatehttps://github.com/rietho/IPOMetabolomicsipolecorguillehttps://github.com/rietho/IPO
isoplot1.3.0+galaxy11.3.1isoplotTo updateIsoplot is a software for the visualisation of MS data from C13 labelling experimentsTo updateMetabolomics, Visualizationisoplotworkflow4metabolomicshttps://github.com/llegregam/Isoplot/tree/main
kmd_hmdb_data_plot1.0.0pythonTo updateretrieves 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/
mixmodel4repeated_measures3.1.0r-lme4To update[Metabolomics][W4M][Statistics] Mixed models - Analysis of variance for repeated measures using mixed modelTo updatehttp://workflow4metabolomics.orgMetabolomicsmixmodel4repeated_measuresworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics
ms2snoop2.2.1r-baseTo update[W4M][Utils] Extraction et nettoyage des spectre MS1/2 post-traitement MSPurity.To updatehttp://workflow4metabolomics.orgMetabolomicsms2snoopworkflow4metabolomics
nmr_annotation3.0.01.1_4r-batchTo update[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_annotation
nmr_annotation2d2.0.01.1_4r-batchTo update[Metabolomics][W4M][NMR] NMR Annotation2D - Automatic annotation of bi-dimensional NMR spectraTo updatehttp://workflow4metabolomics.orgMetabolomics2dnmrannotationmarie-tremblay-metatoulhttps://github.com/workflow4metabolomics/tools-metabolomics
nmr_preprocessing1.1_4r-batchTo update[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_preprocessing
normalization1.0.71.1_4r-batchTo update[Metabolomics][W4M][ALL] Normalization (operation applied on each individual spectrum) of preprocessed dataTo updatehttp://workflow4metabolomics.orgMetabolomicsnormalizationmarie-tremblay-metatoulhttps://github.com/workflow4metabolomics/normalization
physiofit3.3.23.3.2physiofitUp-to-datePhysioFit is a scientific tool designed to quantify cell growth parameters and uptake & production fluxesUp-to-datephysiofit.readthedocs.ioMetabolomicsphysiofitworkflow4metabolomicshttps://github.com/MetaSys-LISBP/PhysioFit
physiofit_manager1.0.11.0.1physiofit_data_managerUp-to-dateHandling of physiofit input filesUp-to-datehttps://github.com/MetaboHUB-MetaToul-FluxoMet/PhysioFit_Data_ManagerMetabolomicsphysiofit_managerworkflow4metabolomics
xcms3.12.04.0.0bioconductor-xcmsTo updateTo updatehttps://github.com/sneumann/xcmsMetabolomicsxcmsworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/
apollo4.2.13apolloTo updateAccess an Apollo instance from GalaxyTo updatehttps://github.com/galaxy-genome-annotation/python-apolloWeb Servicesggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo
askomics0.5askocliTo updateGalaxy 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/askomics
chado2.3.9python-chadoTo updateGalaxy 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/chado
genenotebook0.4.130.4.13genobooUp-to-dateGalaxy 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/genenotebook
jbrowsepythonTo updateA 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/jbrowse
repeatexplorer22.3.8To updateTool 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/repeatexplorer2
tripal3.2.1python-tripalTo updateGalaxy 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/tripal
w4mcorcov0.98.18r-baseTo updateOPLS-DA Contrasts of Univariate ResultsTo updatehttps://github.com/HegemanLab/w4mcorcov_galaxy_wrapperMetabolomicsw4mcorcoveschen42https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper/tree/master
w4mclassfilter0.98.19r-baseTo updateFilter W4M data by values or metadataTo updatehttps://github.com/HegemanLab/w4mclassfilter_galaxy_wrapperMetabolomicsw4mclassfiltereschen42https://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper/tree/master
w4mjoinpn0.98.28.25coreutilsTo updateJoin positive- and negative-mode W4M datasetsTo updatehttps://github.com/HegemanLab/w4mjoinpn_galaxy_wrapperMetabolomicsw4mjoinpneschen42https://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper/tree/master
2d_auto_threshold0.0.5-2scikit-imageTo updatescikit-imagescikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageAutomatic thresholdingScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.scikit-imageTo updatehttps://github.com/bmcvImaging2d_auto_thresholdimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/
2d_feature_extraction0.1.1-2pandasTo updatescikit-imagescikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language2D feature extractionScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.scikit-imageTo updatehttps://github.com/bmcvImaging2d_feature_extractionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction/
2d_filter_segmentation_by_features0.0.1-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, Bioinformaticsfilter segmentation by rulesDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImaging2d_filter_segmentation_by_featuresimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features/
2d_histogram_equalization0.0.1-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, Bioinformatics2d histogram equalizationDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImaging2d_histogram_equalizationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization/
2d_simple_filter0.0.3-3scikit-imageTo updatescikit-imagescikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language2d simple filterScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.scikit-imageTo updatehttps://github.com/bmcvImaging2d_simple_filterimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter/
3d_tensor_feature_dimension_reduction0.0.1numpyTo updateDimensionality 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/
anisotropic_diffusion0.2-2scikit-imageTo updateAnisotropic image diffusionTo updatehttps://github.com/bmcvImaginganisotropic_diffusionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic-diffusion/
bfconvert6.7.0+galaxy26.7.0bftoolsTo updateConvert imagepython-bioformatsTo updatehttps://github.com/bmcvImaging, Convert Formatsbfconvertimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert/
binary2labelimage0.5scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsBinary 2 label imageDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingbinary2labelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage/
binaryimage2points0.1-2numpyTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsBinary Image to PointsDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingbinaryimage2pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points/
bioformats2raw0.7.0To updateConvert image to OME-ZarrTo updatehttps://github.com/Euro-BioImagingImaging, Convert Formatsbioformats2rawimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw
color-deconvolution0.8-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsColor-deconvolution methodsDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingcolor_deconvolutionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution/
concat_channels0.2-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsConcatenate imagesDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingconcat_channelsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels/
coordinates_of_roi0.0.4-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsCoordinates of ROIDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingcoordinates_of_roiimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi/
count_objects0.0.5-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsCount ObjectsDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingcount_objectsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects/
curl_post0.0.2curlTo updateSend file via cURL POSTTo updatehttps://github.com/bmcvData Export, Web Servicescurl_postimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curl_post
curve_fitting0.0.3-2numpyTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsPolynomial curve fitting to data pointsDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/BMCV/galaxy-image-analysisImagingcurve_fittingimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting/
detection_viz0.3-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsDetection VisualizationDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingdetection_vizimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz/
image_info5.7.16.7.0bftoolsTo updateExtracts image metadatapython-bioformatsTo updatehttps://github.com/bmcvImagingimage_infoimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info/
image_registration_affine0.0.3-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsIntensity-based Image RegistrationDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingimage_registration_affineimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine/
imagecoordinates_flipaxis0.1-2pandasTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsFlip coordinate axesDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingimagecoordinates_flipaxisimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis/
labelimage2points0.2-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsLabel Image to PointsDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImaginglabelimage2pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points/
landmark_registration0.1.0-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsLandmark RegistrationDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImaginglandmark_registrationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration/
mahotas-features0.7-2mahotasTo updateCompute image features using mahotas.mahotas-feature-computationTo updatehttps://github.com/luispedro/mahotasImagingmahotas_featuresimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features/
mergeneighboursinlabelimage0.3-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsMerge Neighbours in Label ImageDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingmergeneighboursinlabelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/\mergeneighboursinlabelimage
overlay_images0.0.4scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsOverlay two imagesDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/BMCV/galaxy-image-analysisImagingoverlay_imagesimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images/
permutate_axis0.2-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsPermutates axesDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingpermutate_axisimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis/
points2binaryimage0.2-1scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsPoints to Binary ImageDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingpoints2binaryimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage/
points2labelimage0.3-2numpyTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsPoints to label imageDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingpoints2labelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage/
points_association_nn0.0.3-2numpyTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsAssociation of points in consecutive framesDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/BMCV/galaxy-image-analysisImagingpoints_association_nnimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn/
projective_transformation0.1.2-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsProjective transformationDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingprojective_transformationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation/
projective_transformation_points0.1.1-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsProjective transformation of ROIs defined by pixel (point) coordinatesDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingprojective_transformation_pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points/
rfove2023.11.12To updaterfoveRFOVEImage analysisCell biology, Biomedical science, ImagingPerform segmentation region-based fitting of overlapping ellipsesRFOVE (Region-based Fitting of Overlapping Ellipses and its Application to Cells Segmentation) is a MATLAB script for performing image segmentation on cells.To updatehttps://sites.google.com/site/costaspanagiotakis/research/csImagingrfoveimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove/
scale_image0.4-2pillowTo updatescikit-imagescikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageScale imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.scikit-imageTo updatehttps://github.com/bmcvImagingscale_imageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image/
segmetrics1.41.4.1segmetricsTo updatesegmetricsSegMetricsImage analysisImage segmentation and object detection performance measuresImage segmentation and object detection performance measuressegmetricsTo updatehttps://github.com/bmcvImagingsegmetricsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics/
slice_image0.3-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsSlice imageDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingslice_imageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image/
split_labelmap0.2-2scikit-imageTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsSplit LabelmapsDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/bmcvImagingsplit_labelmapimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmaps/
spot_detection_2d0.0.3-2imageioTo updategalaxy_image_analysisGalaxy Image AnalysisImage analysisImaging, BioinformaticsSpot detection in 2D image sequenceDeveloped within the Biomedical Computer Vision (BMCV) Group Heidelberg.To updatehttps://github.com/BMCV/galaxy-image-analysisImagingspot_detection_2dimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d/
superdsm0.2.00.2.0superdsmUp-to-datesuperdsmSuperDSMImage analysisGlobally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy imagesSuperDSM is a globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images and beyond.superdsmUp-to-datehttps://github.com/bmcvImagingsuperdsmimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm/
unzip6.0unzipTo updateUnzip fileTo updatehttps://github.com/bmcvConvert Formatsunzipimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/unzip/
visceral-evaluatesegmentation0.5-22015.07.03visceral-evaluatesegmentationTo updateVisceral Project - Evaluate Segmentation Toolevaluatesegmentation-toolTo updatehttps://github.com/bmcvImagingvisceral_evaluatesegmentationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation
wsi_extract_top_view0.2-2scikit-imageTo updateWSI Extract Top ViewTo updatehttps://github.com/bmcvImagingwsi_extract_top_viewimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view/
add_value1.0.1perlTo updateAdd a value as a new column.To updateText Manipulationadd_valuedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/add_value
annotation_profiler1.0.00.11.0bx-pythonTo updateProfile Annotations for a set of genomic intervalsTo updateGenomic Interval Operationsannotation_profilerdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/annotation_profiler
best_regression_subsets1.0.0numpyTo updatePerform Best-subsets RegressionTo updateSequence Analysis, Variant Analysisbest_regression_subsetsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/best_regression_subsets
blat_coverage_report1.0.0To updatePolymorphism of the ReadsTo updateNext Gen Mappers, Sequence Analysisblat_coverage_reportdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_coverage_report
blat_mapping1.0.0To updateCoverage of the Reads in wiggle formatTo updateNext Gen Mappers, Sequence Analysisblat_mappingdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_mapping
bowtie_wrappers1.2.01.3.1bowtieTo updateGalaxy 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_wrappers
canonical_correlation_analysis1.0.0RTo updateCanonical Correlation AnalysisTo updateStatisticscanonical_correlation_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/canonical_correlation_analysis
categorize_elements_satisfying_criteria1.0.0To updateCategorize Elements satisfying criteria.To updateStatisticscategorize_elements_satisfying_criteriadevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/categorize_elements_satisfying_criteria
ccat0.0.23.0ccatTo updateControl-based ChIP-seq Analysis ToolTo updateChIP-seqccatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/ccat
cd_hit_dup0.0.14.8.1cd-hit-auxtoolsTo updatesimple tool for removing duplicates from sequencing readsTo updateMetagenomics, Sequence Analysiscd_hit_dupdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/cd_hit_dup
change_case1.0.1perlTo updateConvert column case.To updateText Manipulationchange_casedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/change_case
compute_motif_frequencies_for_all_motifs1.0.0To updateCompute 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_motifs
compute_motifs_frequency1.0.0To updateCompute Motif Frequencies in indel flanking regions.To updateSequence Analysis, Statisticscompute_motifs_frequencydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motifs_frequency
compute_q_values1.0.1RTo updateCompute q-values based on multiple simultaneous tests p-valuesTo updateStatisticscompute_q_valuesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_q_values
condense_characters1.0.0To updateCondense consecutive characters.To updateText Manipulationcondense_charactersdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/condense_characters
convert_characters1.0.1pythonTo updateConvert delimiters to tab.To updateText Manipulationconvert_charactersdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_characters
convert_solid_color2nuc1.0.0To updateConvert Color Space to NucleotidesTo updateFasta Manipulationconvert_solid_color2nucdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_solid_color2nuc
correlation1.0.0rpyTo updateCorrelation for numeric columnsTo updateStatisticscorrelationdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/correlation
count_gff_features0.21.1.0galaxy-opsTo updateCount GFF FeaturesTo updateSequence Analysiscount_gff_featuresdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/count_gff_features
ctd_batch1.0.0To updateCTD analysis of chemicals, diseases, or genesTo updateSequence Analysisctd_batchdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/ctd_batch
cummerbund2.16.0fonts-conda-ecosystemTo updateWrapper for the Bioconductor cummeRbund libraryTo updatehttps://bioconductor.org/packages/release/bioc/html/cummeRbund.htmlRNA, Visualizationcummerbunddevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund
cummerbund_to_tabular1.0.1To updateRegenerate 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_tabular
cut_columns1.0.2To updateSelect columns from a dataset.To updateText Manipulationcut_columnsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/cut_columns
delete_overlapping_indels1.0.0To updateDelete Overlapping Indels from a chromosome indels fileTo updateSequence Analysisdelete_overlapping_indelsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/delete_overlapping_indels
dgidb_annotator0.1To updateAnnotates 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_annotator
divide_pg_snp1.0.0To updateSeparate pgSnp alleles into columnsTo updateSequence Analysisdivide_pg_snpdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/divide_pg_snp
draw_stacked_barplots1.0.0RTo updateDraw Stacked Bar Plots for different categories and different criteriaTo updateGraphics, Statisticsdraw_stacked_barplotsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/draw_stacked_barplots
dwt_cor_ava_perclass1.0.11.7.5r-waveslimTo updateCompute P-values and Correlation Coefficients for Feature OccurrencesTo updateStatisticsdwt_cor_ava_perclassdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_cor_ava_perclass
dwt_cor_avb_all1.0.11.7.5r-waveslimTo updateCompute 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_all
dwt_ivc_all1.0.11.7.5r-waveslimTo updateCompute P-values and Second Moments for Feature OccurrencesTo updateStatisticsdwt_ivc_alldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_ivc_all
dwt_var_perclass1.0.11.7.5r-waveslimTo updateCompute P-values and Max Variances for Feature OccurrencesTo updateStatisticsdwt_var_perclassdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_var_perclass
dwt_var_perfeature1.0.2r-bitopsTo updateWavelet variance using Discrete Wavelet TransfomsTo updateStatisticsdwt_var_perfeaturedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_var_perfeature
express1.1.11.5.1eXpressTo updateQuantify the abundances of a set of target sequences from sampled subsequencesTo updateRNAexpressdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/express
fasta_compute_length1.0.3pythonTo updateCompute sequence lengthTo updateFasta Manipulationfasta_compute_lengthdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_length
fasta_concatenate_by_species0.0.10.11.0bx-pythonTo updateConcatenate FASTA alignment by speciesTo updateFasta Manipulationfasta_concatenate_by_speciesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species
fasta_filter_by_length1.2pythonTo updateFilter sequences by lengthTo updateFasta Manipulationfasta_filter_by_lengthdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_length
fasta_to_tabular1.1.1pythonTo updateFASTA-to-Tabular converterTo updateFasta Manipulationfasta_to_tabulardevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_to_tabular
fastq_trimmer_by_quality1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ Quality Trimmer by sliding windowUp-to-dateFastq Manipulationfastq_trimmer_by_qualitydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fastq_trimmer_by_quality
fastqsolexa_to_fasta_qual1.0.0To updateFASTQSOLEXA-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_qual
featurecounter2.0.00.11.0bx-pythonTo updateFeature coverageTo updateSequence Analysis, Variant Analysisfeaturecounterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/featurecounter
filter_transcripts_via_tracking0.1To updateFilter Combined TranscriptsTo updateRNAfilter_transcripts_via_trackingdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/filter_transcripts_via_tracking
generate_pc_lda_matrix1.0.0To updateGenerate a Matrix for using PC and LDATo updateSequence Analysisgenerate_pc_lda_matrixdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/generate_pc_lda_matrix
getindelrates_3way1.0.00.11.0bx-pythonTo updateEstimate Indel Rates for 3-way alignmentsTo updateSequence Analysis, Variant Analysisgetindelrates_3waydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/getindelrates_3way
getindels_2way1.0.0numpyTo updateFetch Indels from pairwise alignmentsTo updateSequence Analysis, Variant Analysisgetindels_2waydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/getindels_2way
gmaj2.0.1To updateGMAJ Multiple Alignment ViewerTo updateVisualizationgmajdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/gmaj
hisat1.0.3hisatTo updateHISAT 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/hisat
histogram1.0.42.7.8rpy2To updateHistogram of a numeric columnTo updateGraphics, Statisticshistogramdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/histogram
indels_3way1.0.3To updateFetch Indels from 3-way alignmentsTo updateSequence Analysisindels_3waydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/indels_3way
kernel_canonical_correlation_analysis1.0.0rpyTo updateKernel Canonical Correlation AnalysisTo updateStatisticskernel_canonical_correlation_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/kernel_canonical_correlation_analysis
kernel_principal_component_analysis1.0.0rpyTo updateKernel Principal Component AnalysisTo updateStatisticskernel_principal_component_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/kernel_principal_component_analysis
lastz_paired_reads1.1.11.04.22lastzTo updateGalaxy wrapper for the Lastz alignment tool on paired readsTo updateNext Gen Mapperslastz_paired_readsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/lastz_paired_reads
lda_analysis1.0.1RTo updatePerform Linear Discriminant AnalysisTo updateGraphics, Statisticslda_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/lda_analysis
linear_regression1.0.1RTo updatePerform Linear RegressionTo updateStatisticslinear_regressiondevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/linear_regression
logistic_regression_vif1.0.1numpyTo updatePerform Logistic Regression with vifTo updateSequence Analysis, Variant Analysis, Statisticslogistic_regression_vifdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/logistic_regression_vif
maf_cpg_filter1.0.00.11.0bx-pythonTo updateMask CpG/non-CpG sites from MAF fileTo updateSequence Analysis, Variant Analysismaf_cpg_filterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/maf_cpg_filter
mapping_to_ucsc1.0.0To updateFormat mapping data as UCSC custom trackTo updateVisualization, Convert Formats, Next Gen Mappersmapping_to_ucscdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/mapping_to_ucsc
megablast_xml_parser1.0.1pythonTo updateParse blast XML outputTo updateNext Gen Mappers, Convert Formatsmegablast_xml_parserdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/megablast_xml_parser
merge_cols1.0.3pythonTo updateMerge columns together.To updateText Manipulationmerge_colsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/merge_cols
microsatellite_birthdeath1.0.0To updateIdentify microsatellite births and deathsTo updateSequence Analysismicrosatellite_birthdeathdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/microsatellite_birthdeath
microsats_alignment_level1.0.0sputnikTo updateExtract Orthologous Microsatellites from pair-wise alignmentsTo updateSequence Analysis, Variant Analysismicrosats_alignment_leveldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_alignment_level
microsats_mutability1.1.00.11.0bx-pythonTo updateEstimate microsatellite mutability by specified attributesTo updateSequence Analysis, Variant Analysismicrosats_mutabilitydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_mutability
mine0.0.1MINETo updateMaximal Information-based Nonparametric ExplorationTo updateVariant Analysisminedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/mine
multispecies_orthologous_microsats1.0.0bx-sputnikTo updateExtract orthologous microsatellitesTo updateSequence Analysis, Variant Analysismultispecies_orthologous_microsatsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/multispecies_orthologous_microsats
mutate_snp_codon1.0.0To updateMutate Codons with SNPsTo updateVariant Analysismutate_snp_codondevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/mutate_snp_codon
partialr_square1.0.0RTo updateCompute partial R squareTo updateStatisticspartialr_squaredevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/partialr_square
pearson_correlation1.0.0To updatePearson and apos Correlation between any two numeric columnsTo updateStatisticspearson_correlationdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/pearson_correlation
pgsnp2gd_snp1.0.0To updateConvert from pgSnp to gd_snpTo updateVariant Analysispgsnp2gd_snpdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/pgsnp2gd_snp
pileup_interval1.0.30.11.0bx-pythonTo updatePileup-to-Interval condenses pileup format into ranges of basesTo updateSAMpileup_intervaldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/pileup_interval
pileup_parser1.0.2perlTo updateFilter pileup on coverage and SNPsTo updatehttps://github.com/galaxyproject/tools-devteam/SAMpileup_parserdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/pileup_parser
plot_from_lda1.0.1RTo updateDraw ROC plot on "Perform LDA" outputTo updateGraphics, Statisticsplot_from_ldadevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/plot_from_lda
principal_component_analysis1.0.2rpyTo updatePrincipal Component AnalysisTo updateStatisticsprincipal_component_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/principal_component_analysis
quality_filter1.0.10.11.0bx-pythonTo updateFilter nucleotides based on quality scoresTo updateSequence Analysis, Variant Analysisquality_filterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/quality_filter
rcve1.0.0RTo updateCompute RCVETo updateSequence Analysis, Variant Analysisrcvedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/rcve
remove_beginning1.0.0To updateRemove lines from the beginning of a file.To updateText Manipulationremove_beginningdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/remove_beginning
rmap1.0.02.1rmapTo updateRMAP for Solexa Short Reads AlignmentTo updateNext Gen Mappersrmapdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/rmap
rmapq1.0.02.1rmapTo updateRMAPQ for Solexa Short Reads Alignment with Quality ScoresTo updateNext Gen Mappersrmapqdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/rmapq
sam2interval1.0.2pythonTo updateConvert SAM to interval.To updateSAMsam2intervaldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/sam2interval
sam_bitwise_flag_filter1.0.1pythonTo updateFilter SAM on bitwise flag valuesTo updateSAMsam_bitwise_flag_filterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/sam_bitwise_flag_filter
scatterplot1.0.3numpyTo updateScatterplot of two numeric columnsTo updateGraphics, Statisticsscatterplotdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/scatterplot
short_reads_figure_high_quality_length1.0.0rpyTo updateHistogram 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_length
short_reads_figure_score1.0.2fontconfigTo updateBuild base quality distributionTo updateSequence Analysis, Graphicsshort_reads_figure_scoredevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_score
short_reads_trim_seq1.0.0To updateSelect high quality segmentsTo updateFastq Manipulationshort_reads_trim_seqdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_trim_seq
show_beginning1.0.0To updateSelect lines from the beginning of a file.To updateText Manipulationshow_beginningdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/show_beginning
show_tail1.0.0To updateSelect lines from the end of a file.To updateText Manipulationshow_taildevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/show_tail
sicer1.11.1SICERUp-to-dateStatistical 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/sicer
split_paired_reads1.0.0To updateSplit paired end readsTo updateFastq Manipulationsplit_paired_readsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/split_paired_reads
substitution_rates1.0.0To updateEstimate substitution rates for non-coding regionsTo updateSequence Analysis, Variant Analysissubstitution_ratesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/substitution_rates
substitutions1.0.10.11.0bx-pythonTo updateFetch substitutions from pairwise alignmentsTo updateSequence Analysis, Variant Analysissubstitutionsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/substitutions
t_test_two_samples1.0.1RTo updateT Test for Two SamplesTo updateStatisticst_test_two_samplesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/t_test_two_samples
table_annovar0.2annovarTo updateAnnotate 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_annovar
tabular_to_fasta1.1.1pythonTo updateTabular-to-FASTATo updateConvert Formatstabular_to_fastadevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tabular_to_fasta
tophat1.5.01.19.2samtoolsTo updateTophat for IlluminaTo updateRNA, Next Gen Mapperstophatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat
tophat22.1.12.5.3bowtie2To updateTophat - 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/tophat2
tophat_fusion_post0.1blast+To updateWrapper for Tophat-Fusion post stepTo updateTranscriptomicstophat_fusion_postdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_post
trimmer0.0.1To updateTrim leading or trailing characters.To updateText Manipulationtrimmerdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/trimmer
ucsc_custom_track1.0.1pythonTo updateBuild custom track for UCSC genome browserTo updateSequence Analysisucsc_custom_trackdevteamhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_track
varscan_version_22.4.22.4.6varscanTo updateVarScan wrapperTo updatehttps://dkoboldt.github.io/varscan/Variant Analysisvarscan_version_2devteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2
vcf2pgsnp1.0.0To updateVCF to pgSnpTo updateVariant Analysisvcf2pgsnpdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf2pgsnp
vcf_annotate1.0.0To updateAnnotate a VCF file (dbSNP, hapmap)To updateVariant Analysisvcf_annotatedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_annotate
vcf_extract1.0.0To updateExtract reads from a specified regionTo updateVariant Analysisvcf_extractdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_extract
vcf_filter1.0.0To updateFilter a VCF fileTo updateVariant Analysisvcf_filterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_filter
vcf_intersect1.0.0To updateGenerate the intersection of two VCF filesTo updateVariant Analysisvcf_intersectdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_intersect
weightedaverage1.0.11.1.0galaxy-opsTo updateAssign weighted-average of the values of features overlapping an intervalTo updateSequence Analysis, Variant Analysisweightedaveragedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/weightedaverage
windowsplitter1.0.10.11.0bx-pythonTo updateMake windowsTo updateSequence Analysis, Variant Analysiswindowsplitterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/windowsplitter
xy_plot1.0.2r-baseTo updatePlotting tool for multiple series and graph typesTo updateGraphics, Statisticsxy_plotdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot
basecoverage1.0.00.11.0bx-pythonTo updateBase Coverage of all intervalsTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsbasecoveragedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/basecoverage
cluster1.0.00.11.0bx-pythonTo updateCluster the intervals of a datasetTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsclusterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster
complement1.0.00.11.0bx-pythonTo updateComplement intervals of a datasetTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationscomplementdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/complement
concat1.0.10.11.0bx-pythonTo updateConcatenate two bed filesTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsconcatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/concat
coverage1.0.00.11.0bx-pythonTo updateCoverage 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/coverage
flanking_features4.0.10.11.0bx-pythonTo updateFetch 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_features
get_flanks1.0.00.11.0bx-pythonTo updateGet 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_flanks
intersect1.0.00.11.0bx-pythonTo updateIntersect the intervals of two datasetsTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsintersectdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/intersect
join1.0.00.11.0bx-pythonTo updateJoin 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/join
merge1.0.00.11.0bx-pythonTo updateMerge the overlapping intervals of a datasetTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsmergedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/merge
subtract1.0.00.11.0bx-pythonTo updateSubtract the intervals of two datasetsTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationssubtractdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/subtract
subtract_query0.10.11.0bx-pythonTo updateSubtract Whole Dataset from another datasetTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationssubtract_querydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/subtract_query
tables_arithmetic_operations1.0.0perlTo updateArithmetic Operations on tablesTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationstables_arithmetic_operationsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/tables_arithmetic_operations
hgv_fundo1.0.0To updateFunDO human genes associated with disease termsTo updateSequence Analysishgv_fundodevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_fundo
hgv_hilbertvis1.0.0RTo updateHVIS 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_hilbertvis
snpfreq1.0.1RTo updatesnpFreq significant SNPs in case-control dataTo updateVariant Analysis, Statisticssnpfreqdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/snpfreq
find_diag_hits1.0.00.10.0taxonomyTo updateFind diagnostic hitsTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicsfind_diag_hitsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/find_diag_hits
gi2taxonomy1.1.10.10.0taxonomyTo updateFetch taxonomic representationTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicsgi2taxonomydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/gi2taxonomy
kraken2tax1.2+galaxy0gawkTo updateConvert Kraken output to Galaxy taxonomy data.To updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicskraken2taxdevteamhttps://github.com/galaxyproject/tools-devteam/blob/master/tool_collections/taxonomy/kraken2tax/
lca_wrapper1.0.10.10.0taxonomyTo updateFind lowest diagnostic rankTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicslca_wrapperdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/lca_wrapper
poisson2test1.0.00.10.0taxonomyTo updatePoisson two-sample testTo updatehttps://bitbucket.org/natefoo/taxonomyStatistics, Metagenomicspoisson2testdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/poisson2test
t2ps1.0.00.10.0taxonomyTo updateDraw phylogenyTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicst2psdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/t2ps
t2t_report1.0.00.10.0taxonomyTo updateSummarize taxonomyTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicst2t_reportdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/t2t_report
vcftools_annotate0.1echoTo updateAnnotate VCF using custom/user-defined annotationsTo updatehttps://vcftools.github.io/Variant Analysisvcftools_annotatedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_annotate
vcftools_compare0.11.11tabixTo updateCompare 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_compare
vcftools_consensus0.1.111.19.2samtoolsTo updateApply 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_consensus
vcftools_isec0.1.11.11tabixTo updateIntersect multiple VCF datasetsTo updatehttps://vcftools.github.io/Variant Analysisvcftools_isecdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_isec
vcftools_merge0.1.111.11tabixTo updateMerge 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_merge
vcftools_slice0.1echoTo updateSubset VCF dataset by genomic regionsTo updatehttps://vcftools.github.io/Variant Analysisvcftools_slicedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_slice
vcftools_subset0.11.11tabixTo updateSelect samples from a VCF datasetTo updatehttps://vcftools.github.io/Variant Analysisvcftools_subsetdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_subset
10x_bamtofastq1.4.11.4.110x_bamtofastqUp-to-dateConverts 10x Genomics BAM to FASTQUp-to-datehttps://github.com/10XGenomics/bamtofastqConvert Formats10x_bamtofastqbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/10x_bamtofastq
AggregateAlignments0.6.00.6.0graphclust-wrappersUp-to-dateAggregate 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/AggregateAlignments
AlignCluster0.10.6.0graphclust-wrappersTo updateAlign 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/AlignCluster
CMFinder0.40.6.0graphclust-wrappersTo updateDetermines consensus motives for sequences.To updateRNAgraphclust_cmfinderrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinder
CollectResults0.50.6.0graphclust-wrappersTo updatePost-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/CollectResults
CollectResultsNoAlign0.50.6.0graphclust-wrappersTo updateRedundant 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/CollectResultsNoAlign
GSPAN0.40.6.0graphclust-wrappersTo updateSecond step of GraphClustTo updateRNAgraphclust_fasta_to_gspanrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPAN
LocARNAGraphClust0.40.6.0graphclust-wrappersTo updateMLocARNA computes a multiple sequence-structure alignment of RNA sequences.To updateRNAgraphclust_mlocarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClust
NSPDK9.2.3.10.6.0graphclust-wrappersTo updateProduces 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/NSPDK
Plotting0.4seabornTo updatePlotting results for GraphClustTo updateRNAgraphclust_motif_finder_plotrnateamhttps://github.com/eteriSokhoyan/galaxytools/tree/master/tools/GraphClust/Plotting
PrepareForMlocarna0.40.6.0graphclust-wrappersTo updateThis tool prepares files for locarna step.To updateRNAgraphclust_prepocessing_for_mlocarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarna
Preprocessing0.50.6.0graphclust-wrappersTo updatePreprocessing input for GraphClustTo updateRNAgraphclust_preprocessingrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust
Structure_GSPAN0.40.6.0graphclust-wrappersTo updateConvert RNA structure to GSPAN graphsTo updateRNAstructure_to_gspanrnateamhttps://github.com/mmiladi/galaxytools/blob/graphclust-gspan/tools/GraphClust/Structure_GSPAN
agat1.2.01.3.0agatTo updateagatAGATData handling, Genome annotationGenomicsGTF/GFF analysis toolkitAnother Gff Analysis Toolkit (AGAT)Suite of tools to handle gene annotations in any GTF/GFF format.To updatehttps://github.com/NBISweden/AGATConvert Formats, Statistics, Fasta Manipulationagatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/agat
antismash6.1.17.1.0antismashTo updateantismashantiSMASHSequence clustering, Gene prediction, Differential gene expression analysisMolecular interactions, pathways and networks, Gene and protein familiesAntismash allows the genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clustersRapid 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.To updatehttps://antismash.secondarymetabolites.orgSequence Analysisantismashbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash
atactk_trim_adapters0.1.60.1.9atactkTo updateTrim adapters from paired-end HTS reads.To updatehttps://github.com/ParkerLab/atactk/Fastq Manipulationatactk_trim_adaptersrnateamhttps://github.com/bgruening/galaxytools/blob/master/tools/trim_adapters
augustus3.1.03.5.0augustusTo updateAUGUSTUS 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/augustus
bamhash1.11.1bamhashUp-to-dateHash BAM and FASTQ files to verify data integrityUp-to-datehttps://github.com/DecodeGenetics/BamHashSequence Analysisbamhashbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bamhash
barcode_collapse0.1.00.22.0pysamTo updatePaired End randomer aware duplicate removal algorithmTo updatehttps://github.com/YeoLab/gscriptsRNA, Sequence Analysisbarcode_collapsernateamhttps://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapse
bigwig_to_bedgraph0.1.0ucsc_toolsTo updateConvert from bigWig to bedGraph formatTo updateConvert Formatsbigwig_to_bedgraphbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bigwig_to_bedgraph
biomodelsML1To updateRandom Forest model to predict efficacy of immune checkpoint blockade across multiple cancer patient cohortsTo updatehttps://www.ebi.ac.uk/biomodels/BIOMD0000001066Machine Learningbiomodels_biomd0000001066bgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML
bionano3.7.0To updateBionano Solve is a set of tools for analyzing Bionano dataTo updatehttps://bionanogenomics.com/Assemblybionanobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bionano
bismark0.22.10.24.2bismarkTo updateA 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/bismark
blobtoolkit4.0.7To updateIdentification 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/blobtoolkit
blockbuster0.1.20.0.1.1blockbusterTo updateBlockbuster 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/blockbuster
canu2.22.2canuUp-to-datecanuCANUDe-novo assemblyGenomicsCanu is a hierarchical assembly pipeline designed for high-noise single-molecule sequencing (such as the PacBio RS II/Sequel or Oxford Nanopore MinION).De-novo assembly tool for long read chemistry like Nanopore data and PacBio data.Up-to-datehttps://github.com/marbl/canucanubgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/canu
cellpose3.0.1To updateCellpose is an anatomical segmentation algorithmTo updatehttps://github.com/MouseLand/cellposeImagingcellposebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/cellpose
cellprofilerTo updateCellProfilerCellProfilerQuantification, Image analysis, ParsingImaging, Microarray experiment, Genotype and phenotypecellProfiler wrapperTool for quantifying data from biological images, particularly in high-throughput experiments.cellprofilerTo updateImagingcellprofilerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools
cellprofiler_v44.2.6To updatecellProfiler4 wrapperTo updateImagingcellprofiler4bgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools
chipseeker1.32.01.38.0bioconductor-chipseekerTo updateA 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/chipseeker
circexplorer1.1.9.01.1.10circexplorerTo updateA combined strategy to identify circular RNAs (circRNAs and ciRNAs)To updatehttps://github.com/YangLab/CIRCexplorerSequence Analysis, RNAcircexplorerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/circexplorer
combine_metaphlan_humann0.3.0pythonTo updatecombine_metaphlan_and_humannCombine Metaphlan and HUMAnNAggregationMetagenomics, Molecular interactions, pathways and networksCombine MetaPhlAn2 and HUMAnN2 outputs to relate genus/species abundances and gene families/pathways abundances"This tool combine MetaPhlAn outputs and HUMANnN outputs." - Galaxy tool wrapperTo updateMetagenomicscombine_metaphlan2_humann2bebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan2_humann2
compare_humann2_output0.2.0To updatecompare_humann2_outputsCompare HUMAnN2 outputsComparisonMetagenomics, Gene and protein familiesCompare outputs of HUMAnN2 for several samples and extract similar and specific information"This tool compare HUMANnN2 outputs with gene families or pathways and their relative abundances between several samples." - Galaxy tool wrapperTo updateMetagenomicscompare_humann2_outputbebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output
cpat3.0.53.0.5cpatUp-to-dateCoding-potential assessment tool using an alignment-free logistic regression model.Up-to-datehttps://github.com/liguowang/cpatTranscriptomicscpatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/cpat
crt1.2.01.2crisper_recognition_toolTo updateCRISPR Recognition ToolTo updateSequence Analysiscrispr_recognition_toolbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/crt
diff3.7diffutilsTo updateGNU 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/diff
diffbindTo updateDiffbind 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/diffbind
edta2.2.0edtaTo updateedtaThe Extensive de novo TE Annotator (EDTA)De-novo assembly, Deisotoping, Genome annotationWorkflows, Mobile genetic elements, Plant biology, Transcription factors and regulatory sites, Model organismsThe 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.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.To updatehttps://github.com/oushujun/EDTAVariant Analysisedtabgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/edta
epicseg@VERSION_STRING@1.0epicsegTo updateEpiCSeg is a tool for conducting chromatin segmentation.To updatehttps://github.com/lamortenera/epicsegEpigeneticsepicsegrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/epicseg
fastq_info0.25.10.25.2fastq_utilsTo updateFASTQ 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_info
file_manipulation0.4pythonTo updateThis 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_manipulation
find_subsequences0.31.70biopythonTo updateTo updatefind_subsequencesbgruening
flye2.9.32.9.3flyeUp-to-dateAssembly of long and error-prone reads.Up-to-datehttps://github.com/fenderglass/Flye/Assemblyflyebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/flye
footprint1.0.01.0.1footprintTo updateFind transcription factor footprintsTo updatehttps://ohlerlab.mdc-berlin.de/software/Reproducible_footprinting_139/Epigeneticsfootprintrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/footprint
format_cd_hit_output1.0.0+galaxy1To updateFormat 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/
format_metaphlan2_output0.2.0To updateformat_metaphlan2_outputFormat metaphlan2 outputFormattingTaxonomy, MetagenomicsFormat MetaPhlAn2 output to extract abundance at different taxonomic levels"This tool format output file of MetaPhlan2 containing community content (abundance) at all taxonomic levels (from kingdom to strains)." - Galaxy tool wrapperTo updateMetagenomicsformat_metaphlan2_outputbebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output/
gfastats1.3.61.3.6gfastatsUp-to-dategfastatsgfastatsData handlingComputational biologyTool for generating sequence statistics and simultaneous genome assembly file manipulation.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.Up-to-datehttps://github.com/vgl-hub/gfastatsSequence Analysisgfastatsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/gfastats
glimmer_hmmTo updateGlimmerHMM 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_hmm
gotohscan1.3.01.3gotohscanTo updateFind subsequences in dbTo updateSequence Analysisgotohscanrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/gotohscan
graph_converter0.1.0To updateConvert between different graph formatsTo updateConvert Formatsgraph_converterbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/graph_converter
graphclust0.1GraphClustTo updateGraphClust 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/graphclust
graphmap0.5.20.6.3graphmapTo updateMapper for long, error-prone reads.To updatehttps://github.com/isovic/graphmap/Assemblygraphmapbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/graphmap
hclust20.991.0.0hclust2To updatePlots heatmapsTo updatehttps://bitbucket.org/nsegata/hclust2/Data Visualizationhclust2rnateamhttps://github.com/yuanbit/galaxytools/tree/hclust2/tools/hclust2
hictk0.0.80.0.9hictkTo updatehictk, a blazing-fast toolkit to work with .hic and .cool filesTo updatehttps://github.com/paulsengroup/hictkhictkbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hictk
hicup0.9.2To updateThe 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/hicup
hifiasm0.19.80.19.8hifiasmUp-to-dateA fast haplotype-resolved de novo assemblerUp-to-datehttps://github.com/chhylp123/hifiasmAssemblyhifiasmbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hifiasm
homerTo updateSoftware for motif discovery and next generation sequencing analysis.To updatehttp://homer.salk.edu/homer/Sequence Analysishomerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/homer
illumina_methylation_analyser0.1RscriptTo updateMethylation 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_analyser
bia-ftplinks0.1.0wgetTo updateTool to query ftp links for study from bioimage archiveTo updateImagingbia_downloadbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools
graphicsmagick1.3.421.3.26graphicsmagickTo updateContains tools based on GraphicsMagickTo updatehttp://www.graphicsmagick.orgImaginggraphicsmagickbgrueninghttps://github.com/bgruening/galaxytools/new/gm/tools/image_processing/image_processing/
imagej2To updateimagejImageJ2Image analysis, Image annotation, VisualisationImagingImageJ2 is a new version of ImageJ for the next generation of multidimensionalimage data, with a focus on scientific imaging.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.imagej2To updatehttp://fiji.scImagingimagej2imgteamhttps://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2
woundhealing1.6.11.6.1fiji-morpholibjUp-to-dateTool 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/tools
instagraal0.1.6To updateinstagraalinstaGRAALGenome assembly, Mapping assembly, Genetic mapping, ScaffoldingSequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sitesLarge genome reassembly based on Hi-C dataChromosome-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)To updatehttps://github.com/koszullab/instaGRAALAssemblyinstagraalbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/instagraal
iprscan5To updateInterproscan 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/iprscan5
itsx1.1.31.1.3itsxUp-to-dateITSxITSxSequence feature detectionFunctional, regulatory and non-coding RNA, MicrobiologyITSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences.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.Up-to-datehttps://microbiology.se/software/itsx/Metagenomicsitsxbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/itsx
jupyter_job0.0.1To updateRun jupyter notebook script in GalaxyTo updateMachine Learningrun_jupyter_jobbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job
labels1.0.5.0labelsTo updateremaps and annotates alignmentsTo updatehttps://github.com/bgruening/galaxytools/tree/master/tools/labelsSequence Analysislabelsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/labels
lighter1.01.1.2lighterTo updateLighter is a kmer-based error correction method for whole genome sequencing dataTo updateSequence Analysis, Fasta Manipulationlighterbgrueninghttps://github.com/mourisl/Lighter
mafft7.5087.520mafftTo updateMAFFTMAFFTMultiple sequence alignmentSequence analysisMultiple alignment program for amino acid or nucleotide sequencesMAFFT (Multiple Alignment using Fast Fourier Transform) is a high speed multiple sequence alignment program.To updateRNAmafftrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/mafft
mavedb0.9To updatedata source for MaveDBTo updateData Sourcemavedb_importerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mave_tools/mavedb/
mcl14.13722.282mclTo updateMarkov Cluster AlgorithmTo updatehttp://micans.org/mcl/Sequence Analysis, Metagenomicsmclbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mcl
methtools0.1.1methtoolsTo updatetools for methylation analysisTo updatehttps://github.com/bgruening/galaxytools/tree/master/tools/methtoolsSequence Analysismethtoolsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/methtools
methyldackel0.5.20.6.1methyldackelTo updateA tool for processing bisulfite sequencing alignmentsTo updatehttps://github.com/dpryan79/MethylDackelSequence Analysispileomethbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/methyldackel
methylkit0.99.21.28.0bioconductor-methylkitTo updateA 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/methylkit
metilene0.2.6.10.2.8metileneTo updateDifferential DNA methylation callingTo updateRNA, Statisticsmetilenernateamhttps://github.com/bgruening/galaxytools/tree/master/tools/metilene
miclip1.2.0RscriptTo updateIdentification 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/miclip
minced0.2.00.4.2mincedTo updateMinCED - Mining CRISPRs in Environmental DatasetsTo updatehttp://bioweb2.pasteur.fr/docs/modules/minced/0.1.5/_READMESequence Analysismincedbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/minced
minipolish0.1.30.1.3minipolishUp-to-dateminipolishminipolishLocalised reassembly, Read depth analysisSequence assembly, SequencingPolishing miniasm assembliesA 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.Up-to-datehttps://github.com/rrwick/MinipolishSequence Analysisminipolishbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/minipolish
mitohifi3To updateAssembly mitogenomes from Pacbio HiFi read.To updatehttps://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2Assemblymitohifibgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mitohifi
molecule2gspan0.22.3.90dev7d621d9openbabelTo updateconverterTo updatehttps://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspanConvert Formatsmolecule_to_gspanbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspan
music_deconvolution0.1.10.1.1music-deconvolutionUp-to-dateMulti-subject Single Cell deconvolution (MuSiC)Up-to-datehttps://github.com/xuranw/MuSiCTranscriptomicsmusicbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/music/
nanopolish0.14.00.14.0nanopolishUp-to-dateNanopolish 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/nanopolish
netboxr1.6.01.9.0bioconductor-netboxrTo updatenetboxr enables automated discovery of biological process modules by network analysisTo updateSystems Biologynetboxrbgruening
nextdenovo2.5.02.5.2nextdenovoTo updatenextdenovoNextDenovoDe-novo assembly, Genome assemblySequencing, Sequence assemblyString graph-based de novo assembler for long readsNextDenovo 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.To updatehttps://github.com/Nextomics/NextDenovoAssemblynextdenovobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo
nucleosome_prediction3.03.0nucleosome_predictionUp-to-datePrediction of Nucleosomes Positions on the GenomeUp-to-datehttps://genie.weizmann.ac.il/software/nucleo_exe.htmlSequence Analysisnucleosome_predictionbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction
numeric_clustering0.9anacondaTo updateClustering tool for numberic valuesTo updatehttp://scikit-learn.org/stable/index.htmlStatisticsnumeric_clusteringbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/numeric_clustering
openms2.1.03.1.0openmsTo updateOpenMS in version 2.1.To updateProteomicsopenmsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/openms
pandas_rolling_window0.1numpyTo updateRolling 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_window
peakachu0.2.0+galaxy10.2.0peakachuTo updatePEAKachu is a peak-caller for CLIP- and RIP-Seq dataTo updateSequence Analysis, RNApeakachurnateamhttps://github.com/tbischler/PEAKachu
perf5.11.0perfTo updatesuitable for boolean classification problemsTo updatehttp://osmot.cs.cornell.edu/kddcup/software.htmlstats_perf_toolbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/perf
pfamscan1.61.6pfam_scanUp-to-datepfamscanPfamScanProtein sequence analysisSequence analysisSearch a FASTA sequence against a library of Pfam HMM.This tool is used to search a FASTA sequence against a library of Pfam HMM.Up-to-datehttp://ftp.ebi.ac.uk/pub/databases/Pfam/Tools/Sequence Analysispfamscanbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/pfamscan
pg_toolspostgresqlTo updatetool suite for dealing with Postgresql databases from Galaxy's historyTo updatehttps://www.postgresql.orgData Export, Data Sourcepgtoolsbgrueninghttps://github.com/bgruening/galaxytools/tools/pgtools
pharmcatTo updatePharmacogenomics Clinical Annotation ToolTo updatehttps://pharmcat.org/Variant Analysispharmcatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/pharmcat
piranha1.2.1.01.2.1piranhaTo updatePiranha is a peak-caller for CLIP- and RIP-Seq dataTo updateSequence Analysis, RNApiranharnateamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/piranha
platypus0.0.11platypusTo updateefficient and accurate variant-detection in high-throughput sequencing dataTo updatehttp://www.well.ox.ac.uk/platypusSequence Analysisplatypusbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/platypus
plotly_ml_performance_plots0.2pandasTo updateperformance 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_plots
plotly_parallel_coordinates_plot0.2pythonTo updateparallel 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_plot
plotly_regression_performance_plots0.1pythonTo updateperformance 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_plots
protease_prediction0.92.0edenTo updateThis 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_prediction
protein_properties0.2.01.70biopythonTo updateCalculation of various properties from given protein sequencesTo updateSequence Analysisprotein_propertiesbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/protein_properties
improviser1.1.0.1To updateVisualisation of PepXML filesTo updatehttp://www.improviser.uni-freiburg.de/Proteomicsproteomics_improviserbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviser
racon1.5.01.5.0raconUp-to-dateRaconRaconGenome assembly, Mapping assembly, Sequence trimmingWhole genome sequencing, Sequence assembly, Plant biologyConsensus module for raw de novo DNA assembly of long uncorrected reads.The Possibility to Use Oxford Nanopore Technology | Ultrafast consensus module for raw de novo genome assembly of long uncorrected reads. http://genome.cshlp.org/content/early/2017/01/18/gr.214270.116 Note: This was the original repository which will no longer be officially maintained. Please use the new official repository here: https://github.com/isovic/racon| Racon is intended as a standalone consensus module to correct raw contigs generated by rapid assembly methods which do not include a consensus step | Consensus module for raw de novo DNA assembly of long uncorrected readsUp-to-datehttps://github.com/isovic/raconSequence Analysisraconbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/racon
repeat_masker0.1.24.1.5RepeatMaskerTo updateRepeatMasker 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_masker
replaceColumn0.2To updateA 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/replaceColumn
rest_tool0.1.0To updateThis 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_tool
antarna1.12.0.1.2antarnaTo updateantaRNA 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/
aresite20.1.2pythonTo updateAREsite2 REST InterfaceTo updatehttp://rna.tbi.univie.ac.at/AREsiteRNA, Data Source, Sequence Analysisaresite2rnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite2
blockclust1.1.11.1.1blockclustUp-to-dateBlockClust 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/blockclust
cmsearch_deoverlap0.08+galaxy0perlTo updateremoves lower scoring overlaps from cmsearch results.To 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_deoverlap
cmv1.0.81.0.8cmvUp-to-datecmv 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/cmv
cofold2.0.4.02.0.4cofoldTo updateCofold 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/cofold
compalignp1.01.0compalignpUp-to-dateCompute fractional identity between trusted alignment and test alignmentUp-to-dateRNA, Sequence Analysiscompalignprnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp/
coprarna2.1.12.1.4coprarnaTo updateTarget prediction for prokaryotic trans-acting small RNAsTo updatehttps://github.com/PatrickRWright/CopraRNARNA, Sequence Analysiscoprarnarnateamhttps://github.com/PatrickRWright/CopraRNA
dewseq0.1.0+galaxy0pythonTo updateDEWSeq 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/dewseq
dorina1.0To updatedata source for RNA interactions in post-transcriptional regulationTo updateRNA, Data Sourcedorinarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina/
dot2ct5.7.a6.4rnastructureTo updateDot-Bracket to Connect Table (CT)To updateSequence Analysis, RNAdot2ctrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2ct
dotknot1.3.1vienna_rnaTo updateDotKnot 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/dotknot
exparna1.0.11.0.1exparnaUp-to-dateExpaRNA 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/exparna
graphprot1.1.7+galaxy11.1.7graphprotTo updateGraphProt 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/graphprot
htseq-clip0.1.0+galaxy02.19.0b0htseq-clipTo updatehtseq-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-clip
infernal1.1.41.1.5infernalTo updateinfernalInfernalNucleic acid feature detectionSequence sites, features and motifsInfernal ("INFERence of RNA ALignment") is for searching DNA sequence databases for RNA structure and sequence similarities.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.To updatehttp://infernal.janelia.org/RNAinfernalbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/infernal
infornaTo updateINFO-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/inforna
intarna3.4.03.4.0intarnaUp-to-dateEfficient 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/intarna
kinwalkerTo updateKinwalker 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/kinwalker
locarna1.9.2.32.0.0locarnaTo updateLocARNA - A suite for multiple alignment and folding of RNAsTo updatehttp://www.bioinf.uni-freiburg.de/Software/LocARNA/RNAlocarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarna
mea0.6.4.10.6.4meaTo updateMaximum expected accuracy predictionTo updatehttp://www.bioinf.uni-leipzig.de/Software/meaRNAmearnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mea
mqc1.91.10mqcTo updateRibosome profiling mapping quality control toolTo updatehttps://github.com/Biobix/mQCSequence Analysismqcrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc/
nastiseq1.01.0r-nastiseqUp-to-dateA 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/nastiseq
paralyzer1.51.5paralyzerUp-to-dateA 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/paralyzer
pipmir0.1.01.1pipmirTo updateA 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/pipmir
rRNA0.1hmmsearch3.0To updateIdentification of ribosomal RNA genes in metagenomic fragments.To updatehttp://weizhong-lab.ucsd.edu/meta_rna/RNArrnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rRNA
rbpbench0.8.10.8.1rbpbenchUp-to-daterbpbenchRBPBenchRNA, Protein interactions, RNA immunoprecipitation, Bioinformatics, Sequence analysisEvaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifsEvaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifsUp-to-datehttps://github.com/michauhl/RBPBenchSequence Analysis, RNA, CLIP-seqrbpbenchrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbench
rcas1.5.41.28.2bioconductor-rcasTo updateRCAS (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/
reago1.11.1reagoUp-to-dateReago is tool to assembly 16S ribosomal RNA recovery from metagenomic data.Up-to-datehttps://github.com/chengyuan/reago-1.1Metagenomics, RNAreagornateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago
remurna1.0.01.0remurnaTo updateremuRNA - 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/remurna
ribotaper1.3.1a1.3.1ribotaperTo updateribotaperRiboTaperGene expression profilingFunctional genomicsA method for defining traslated ORFs using Ribosome Profiling data.New analysis pipeline for Ribosome Profiling (Ribo-seq) experiments, which exploits the triplet periodicity of ribosomal footprints to call translated regions.To updatehttps://ohlerlab.mdc-berlin.de/software/RiboTaper_126/RNAribotaperrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper/
rna_shapes3.3.0@EXECUTABLE@To updateCompute secondary structures of RNATo updateRNArnashapesrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapes
rnabob2.2.1.02.2.1rnabobTo updateFast pattern searching for RNA structural motifsTo updatehttp://eddylab.org/software.htmlRNArnabobrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabob
rnacode0.3.20.3rnacodeTo updateAnalyze the protein coding potential in MSATo updateRNArnacodernateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacode
rnacommender0.1.13.5samTo updateRNAcommender 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_commender
rnalien1.3.61.8.0rnalienTo updateRNAlien unsupervized RNA family model constructionTo updatehttp://rna.tbi.univie.ac.at/rnalien/RNA, Sequence Analysisrnalienrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalien
rnasnp1.2.01.2rnasnpTo updateRNAsnp Efficient detection of local RNA secondary structure changes induced by SNPsTo updatehttp://rth.dk/resources/rnasnp/RNArnasnprnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rnasnp
rnaz2.1.12.1.1rnazUp-to-dateRNAz 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/rnaz
selectsequencesfrommsa1.0.51.0.5selectsequencesfrommsaUp-to-dateSelectSequences - 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/selectsequencesfrommsa
sortmerna4.3.64.3.6sortmernaUp-to-datesortmernaSortMeRNASequence similarity search, Sequence comparison, Sequence alignment analysisMetatranscriptomics, MetagenomicsSortMeRNA is a software designed to rapidly filter ribosomal RNA fragments from metatransriptomic data produced by next-generation sequencers.Sequence analysis tool for filtering, mapping and OTU-picking NGS reads.Up-to-datehttp://bioinfo.lifl.fr/RNA/sortmerna/RNAsortmernarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna
sshmm1.0.71.0.7sshmmUp-to-datessHMM 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/
targetfinder1.71.7targetfinderUp-to-datePlant small RNA target prediction toolUp-to-datehttps://github.com/carringtonlab/TargetFinder.gitRNAtargetfinderrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder/
trna_prediction0.61.2.41aragornTo updateAragorn 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_prediction
vienna_rna2.2.102.6.4viennarnaTo updateViennaRNA - 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_rna
sailfish0.10.1.1bzip2To updateSailfish 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/sailfish
salmon1.10.11.10.2salmonTo updateSalmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data.To updatehttps://github.com/COMBINE-lab/salmonSequence Analysis, RNA, Transcriptomicsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/salmon
sambamba1.0sambambaTo updateSAMBAMBA: process your BAM data faster!To updatehttps://github.com/lomereiter/sambambaSAMsambambarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/sambamba
sed0.0.1sedTo updateManipulate 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/sed
segemehl0.2.0.40.3.4segemehlTo updatesegemehl - short read mapping with gapsTo updatehttp://www.bioinf.uni-leipzig.de/Software/segemehl/Next Gen Mapperssegemehlrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/segemehl
sklearn1.0.11.0To updateMachine Learning tool suite from Scikit-learnTo updatehttp://scikit-learn.orgMachine Learning, Statisticssklearnbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/sklearn
splitfasta0.4.01.70biopythonTo updateSplit a multi-sequence fasta file into files containing single sequencesTo updateText Manipulationsplitfastarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/splitfasta
statistics0.3numpyTo updateTool for computing statistical tests.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/statisticsStatisticsbg_statistical_hypothesis_testingbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/statistics
stress_ng0.12.04stress-ngTo updatestress test a computer system in various selectable waysTo updateWeb Servicesstress_ngbgruening-utilhttps://github.com/ColinIanKing/stress-ng
tapscan4.76+galaxy03.4hmmerTo updateSearch for transcription associated proteins (TAPs)To updatehttps://plantcode.cup.uni-freiburg.de/tapscan/Proteomicstapscanbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/tapscan
add_line_to_file0.1.08.25coreutilsTo updateAdds 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_file
column_arrange_by_header0.2To updateColumn arrange by header nameTo updateText Manipulationcolumn_arrange_by_headerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/column_arrange_by_header
join_files_on_column_fuzzy1.0.1pythonTo updateJoin 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_fuzzy
split_file_on_column0.6gawkTo updateSplit a file on a specific column.To updateText Manipulationsplit_file_on_columnbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_on_column
split_file_to_collection0.5.1pythonTo updateSplit tabular, MGF, FASTA, or FASTQ files to a dataset collection.To updateText Manipulationsplit_file_to_collectionbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collection
text_processing9.38.25coreutilsTo updateHigh 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_processing
tgsgapcloser1.0.31.2.1tgsgapcloserTo updateTGS-GapCloserTGS-GapCloserGenome assembly, Read mapping, Scaffolding, Localised reassemblySequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, MappingTGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly.TGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads.To updatehttps://github.com/BGI-Qingdao/TGS-GapCloserAssemblytgsgapcloserbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser
tool_recommendation_model0.0.5pythonTo updateCreate model to recommend toolsTo updatehttps://github.com/bgruening/galaxytoolsMachine Learningcreate_tool_recommendation_modelbgrueninghttps://github.com/bgruening/galaxytools/tree/recommendation_training/tools/tool_recommendation_model
trim_galore0.6.70.6.10trim-galoreTo updatetrim_galoreTrim GaloreSequence trimmingSequence analysisTrim Galore adaptive quality and adapter trimmerA 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.To updatehttp://www.bioinformatics.babraham.ac.uk/projects/trim_galore/Sequence Analysis, Fastq Manipulationtrim_galorebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/trim_galore
uniprot_rest_interface0.4requestsTo updateUniProt ID mapping and sequence retrievalTo updatehttps://github.com/jdrudolph/uniprotProteomics, Sequence Analysisuniprot_rest_interfacebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interface
vt0.22015.11.10vtTo updateA tool set for short variant discovery in genetic sequence data.To updateSequence Analysis, Variant Analysisvtbgrueninghttps://github.com/atks/vt
wtdbg2.52.5wtdbgUp-to-datewtdbg2wtdbg2Genome assembly, De-novo assemblySequence assembly, SequencingWTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly.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.Up-to-datehttps://github.com/ruanjue/wtdbg2Assemblywtdbgbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbg
align_back_trans0.0.101.70biopythonTo updateThread 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_trans
chromosome_diagram0.0.31.70biopythonTo updateChromosome Diagrams using BiopythonTo updateGraphics, Sequence Analysis, Visualizationchromosome_diagrampeterjc
clc_assembly_cell0.0.71.19.2samtoolsTo updateGalaxy 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_cell
clinod0.1.01.3clinodTo updateNoD: a Nucleolar localization sequence detector for eukaryotic and viral proteinsTo updatehttp://www.compbio.dundee.ac.uk/www-nod/Sequence Analysisclinodpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/clinod
count_roi_variants0.0.61.19.2samtoolsTo updateCount 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_variants
coverage_stats0.1.01.19.2samtoolsTo updateBAM 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_stats
effectiveT30.0.201.0.1effectiveT3To updateFind bacterial type III effectors in protein sequencesTo updatehttp://effectors.orgSequence Analysiseffectivet3peterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3
fasta_filter_by_id0.0.71.1.5galaxy_sequence_utilsTo updateFilter 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_id
fastq_filter_by_id0.0.71.1.5galaxy_sequence_utilsTo updateFilter 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_id
fastq_pair_names0.0.51.1.5galaxy_sequence_utilsTo updateExtract 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_names
fastq_paired_unpaired0.1.51.1.5galaxy_sequence_utilsTo updateDivide 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_unpaired
get_orfs_or_cdss0.2.31.70biopythonTo updateSearch 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_cdss
mummer0.0.89.18ghostscriptTo updateDraw dotplots using mummer, mucmer, or promer with mummerplotTo updatehttp://mummer.sourceforge.net/Graphics, Sequence Analysis, Visualizationmummerpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/mummer
nlstradamus0.0.111.8NLStradamusTo updateFind 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/nlstradamus
predictnls0.0.10To updatePython reimplementation of predictNLS for GalaxyTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/predictnlsSequence Analysispredictnlspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls
protein_analysis0.0.13promoterTo updateTMHMM, 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_analysis
sample_seqs0.2.61.70biopythonTo updateSub-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_seqs
samtools_depad0.0.51.19.2samtoolsTo updateRe-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_depad
samtools_depth0.0.31.19.2samtoolsTo updateCoverage depth via samtoolsTo updatehttp://www.htslib.org/Assembly, Sequence Analysis, SAMsamtools_depthpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth
samtools_idxstats0.0.61.19.2samtoolsTo updateBAM 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_idxstats
seq_composition0.0.51.70biopythonTo updateSequence compositionTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_compositionSequence Analysisseq_compositionpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition
seq_filter_by_id0.2.91.70biopythonTo updateFilter 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_id
seq_filter_by_mapping0.0.81.70biopythonTo updateFilter 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_mapping
seq_length0.0.51.70biopythonTo updateCompute 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_length
seq_primer_clip0.0.181.1.5galaxy_sequence_utilsTo updateTrim 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_clip
seq_rename0.0.101.1.5galaxy_sequence_utilsTo updateRename 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_rename
seq_select_by_id0.0.151.70biopythonTo updateSelect 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_id
venn_list0.1.21.1.5galaxy_sequence_utilsTo updateDraw 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_list
TrimNs0.1.01.0trimns_vgpTo updateTrimNs 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/trimN
abricate1.0.11.0.1abricateUp-to-dateABRicateABRicateAntimicrobial resistance predictionGenomics, MicrobiologyMass screening of contigs for antiobiotic resistance genesMass screening of contigs for antimicrobial resistance or virulence genes.Up-to-datehttps://github.com/tseemann/abricateSequence Analysisabricateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abricate/
abritamr1.0.141.0.14abritamrUp-to-dateA pipeline for running AMRfinderPlus and collating results into functional classesUp-to-datehttps://zenodo.org/record/7370628Sequence Analysisabritamriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamr
abyss2.3.72.3.7abyssUp-to-dateabyssABySSGenome assembly, De-novo assembly, ScaffoldingSequence assemblyAssembly By Short Sequences - a de novo, parallel, paired-end sequence assemblerDe novo genome sequence assembler using short reads.Up-to-datehttp://www.bcgsc.ca/platform/bioinfo/software/abyssAssemblyabyssiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss
adapter_removal2.3.32.3.3adapterremovalUp-to-dateadapterremovalAdapterRemovalSequence trimming, Sequence merging, Primer removalRemoves residual adapter sequences from single-end (SE) or paired-end (PE) FASTQ reads.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.Up-to-datehttps://github.com/MikkelSchubert/adapterremovalFasta Manipulation, Sequence Analysisadapter_removaliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/
add_input_name_as_column0.2.0pythonTo updateAdd 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_column
aegean0.16.00.16.0aegeanUp-to-dategaevalGAEVALSequence annotationSequence analysis, Gene structureAEGeAn toolkit wrappersGene Annotation EVAluation.Up-to-datehttps://github.com/BrendelGroup/AEGeAnTranscriptomics, Sequence Analysisaegeaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/aegean
aldex21.26.01.34.0bioconductor-aldex2To updatealdex2ALDEx2Statistical inferenceGene expression, Statistics and probabilityPerforms analysis Of differential abundance taking sample variation into accountA 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.To updatehttps://github.com/ggloor/ALDEx_biocMetagenomicsaldex2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2
allegro@VER@.03allegroTo updateallegroAllegroSequence motif discoverySequence analysis, Transcription factors and regulatory sites, DNALinkage and haplotype analysis from deCODEIt 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.To updatehttp://www.decode.com/software/Variant Analysisallegroiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/allegro/
amplican1.14.01.24.0bioconductor-amplicanTo updateamplicanamplicanAlignment, Standardisation and normalisationPCR experiment, Statistics and probabilityAmpliCan is an analysis tool for genome editing.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.To updatehttps://github.com/valenlab/amplicanSequence Analysisamplicaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/amplican
ampvis22.8.6To updateampvisampvisAnalysis, VisualisationBiodiversityampvis2ampvis2 is an R-package to conveniently visualise and analyse 16S rRNA amplicon data in different ways.To updatehttps://github.com/MadsAlbertsen/ampvis2/Metagenomicsampvis2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ampvis2
amrfinderplus3.11.263.12.8ncbi-amrfinderplusTo updateamrfinderplusAMRFinderPlusAntimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious disease"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 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 organismsTo updatehttps://github.com/ncbi/amrSequence AnalysisAMRFinderPlusiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/amrfinderplus
ancombc1.4.02.4.0bioconductor-ancombcTo updateancombcANCOMBCDNA barcodingMicrobial ecology, MetagenomicsPerforms analysis of compositions of microbiomes with bias correction.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.To updatehttps://github.com/FrederickHuangLin/ANCOMBCMetagenomicsancombciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ancombc
anndata0.10.30.6.22.post1anndataTo updateImport, Export, Inspect and Manipulate Anndata and Loom objectsTo updatehttps://anndata.readthedocs.ioTranscriptomics, Sequence Analysisanndataiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/
annotatemyids3.18.03.18.0bioconductor-org.hs.eg.dbUp-to-dateannotatemyidsannotatemyidsAnnotationannotateMyIDs: get annotation for a set of IDs using the Bioconductor annotation packagesThis 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.Up-to-datehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyidsGenome annotationannotatemyidsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids
arriba2.4.02.4.0arribaUp-to-dateArriba 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/arriba
art2014.11.03.02016.06.05artTo updateartARTConversionBioinformaticsSimulator for Illumina, 454, and SOLiD sequencing dataART 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 SOLiDTo updateSequence Analysis, Data Sourceartiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/art
artic1.2.4articTo updatearticARTICSequence alignmentGenomicsThe 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 buildingA bioinformatics pipeline for working with virus sequencing data sequenced with nanoporeTo updatehttps://github.com/artic-network/fieldbioinformaticsSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/artic
assembly-stats17.0217.02rjchallis-assembly-statsUp-to-dateAssembly 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-stats
augustus3.4.03.5.0augustusTo updateaugustusAUGUSTUSGene prediction, Ab-initio gene prediction, Homology-based gene prediction, Homology-based gene prediction, OperationGene transcripts, Gene and protein familiesAUGUSTUS is a program that predicts genes in eukaryotic genomic sequences.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.To updatehttp://bioinf.uni-greifswald.de/augustus/Sequence Analysisaugustusbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus
b2btools3.0.5+galaxy03.0.6b2btoolsTo updateb2btoolsb2bToolsProtein disorder prediction, Protein secondary structure prediction, Protein feature detectionThis 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.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 MSATo updatehttps://bio2byte.beComputational chemistry, Molecular Dynamics, Proteomics, Sequence Analysis, Synthetic Biologyiuc
bakta1.9.21.9.2baktaUp-to-dateBaktaBaktaGenome annotationGenomics, Data submission, annotation and curation, Sequence analysis"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."Rapid & standardized annotation of bacterial genomes, MAGs & plasmidsUp-to-datehttps://github.com/oschwengers/baktaSequence Analysisbaktaiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/bakta
bam_to_scidx1.0.1openjdkTo updateContains 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_scidx
bamutil1.0.15bamutilTo updatebamUtil 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/bamutil
bandage2022.092022.09bandage_ngUp-to-datebandageBandageSequence assembly visualisationGenomics, Sequence assemblyBandage - A Bioinformatics Application for Navigating De novo Assembly Graphs EasilyGUI 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.Up-to-datehttps://github.com/rrwick/BandageVisualizationbandageiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bandage
barcode_splitter0.18.4.00.18.6barcode_splitterTo updateA 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_splitter
baredsc1.1.21.1.2baredscUp-to-datebaredscbaredSCData retrieval, Expression correlation analysis, Differential gene expression profilingRNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probabilitybaredSC 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.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.Up-to-datehttps://github.com/lldelisle/baredSCTranscriptomics, Visualizationbaredsciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/baredsc
barrnap1.2.20.9barrnapTo updatebarrnapBarrnapGene predictionGenomics, Model organisms, Model organismsContains the Barrnap tool for finding ribosomal RNAs in FASTA sequences.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).To updateSequence Analysisbarrnapiuc
basil1.2.01.2.0anise_basilUp-to-dateBreakpoint detection, including large insertionsUp-to-datehttps://github.com/seqan/anise_basilVariant Analysisbasiliuc
bax2bam0.0.110.0.11bax2bamUp-to-dateBAX to BAM converterUp-to-datehttps://github.com/pacificbiosciences/bax2bam/Convert Formats, Sequence Analysisbax2bamiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pax2bam
bayescan2.12.0.1bayescanTo updatebayescanBayeScanStatistical inferenceGenetics, Evolutionary biology, Statistics and probability, DNA polymorphismDetecting natural selection from population-based genetic dataBAYEsian 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.To updatehttp://cmpg.unibe.ch/software/BayeScan/index.htmlSequence Analysisbayescaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bayescan/
bbtools39.0639.06bbmapUp-to-dateBBTools 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.Up-to-datehttps://jgi.doe.gov/data-and-tools/bbtools/Sequence Analysisbbtoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtools
bcftools1.15.11.19bcftoolsTo updatebcftoolsBCFtoolsData handling, Variant callingGenetic variation, DNA polymorphism, GWAS study, Genotyping experimentBCFtools toolkit wrappersBCFtools 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.To updatehttps://samtools.github.io/bcftools/Variant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bcftools
bctools0.2.20.2.2bctoolsUp-to-datebctools 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/bedtools
beacon22.0.02.0.0beacon2-ri-toolsUp-to-dateGA4GH Beaconbeacon2-ri-tools are part of the ELIXIR-CRG Beacon v2 Reference Implementation (B2RI).Up-to-datehttps://github.com/EGA-archive/beacon2-ri-tools/tree/mainVariant Analysisbeacon2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/beacon2
beagle5.2_21Apr21.3045.4_22Jul22.46ebeagleTo updateBeagle 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/beagle
bedops2.4.412.4.41bedopsUp-to-dateBEDOPS: high-performance genomic feature operationsUp-to-datehttps://bedops.readthedocs.io/en/latest/Genomic Interval Operationsbedops_sortbediuchttps://bedops.readthedocs.io/
bedtools2.30.02.31.1bedtoolsTo updatebedtoolsBEDToolsMappingGenomicsbedtools is a powerful toolset for genome arithmeticBEDTools is an extensive suite of utilities for comparing genomic features in BED format.To updatehttps://github.com/arq5x/bedtools2Genomic Interval Operations, Text Manipulationbedtoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools
bellerophon1.01.0bellerophonUp-to-dateFilter mapped reads where the mapping spans a junction, retaining the 5-prime read.Up-to-datehttps://github.com/davebx/bellerophonSequence Analysisbellerophoniuchttps://github.com/davebx/bellerophon
berokka0.2.30.2.3berokkaUp-to-dateBerokka 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/berokka
bigscape1.1.91.1.9bigscapeUp-to-dateConstruct sequence similarity networks of BGCs and groups them into GCFUp-to-datehttps://github.com/medema-group/BiG-SCAPEMetagenomicsbigscapeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bigscape/
binning_refiner1.4.31.4.3binning_refinerUp-to-datebinning_refinerBinning_refinerRead binning, Sequence clusteringMetagenomicsReconciles the outputs of different binning programs with the aim to improve the quality of genome bins,especially with respect to contamination levels.Improving genome bins through the combination of different binning programsUp-to-datehttps://github.com/songweizhi/Binning_refinerMetagenomicsbinning_refineriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/binning_refiner/
bioext0.21.20.21.2python-bioextUp-to-dateA suite of Galaxy tools designed around the BioExt extension to BioPython. Align sequences, merge duplicate sequences into one, and more!Up-to-datehttps://pypi.python.org/pypi/biopython-extensions/Next Gen Mappersiuchttps://github.com/davebx/bioext-gx/
bioinformatics_cafe0.1.0pythonTo updateMiscellanea of scripts for bioinformaticsTo updatehttps://github.com/dariober/bioinformatics-cafe/Sequence Analysisbioinformatics_cafembernthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics-cafe
biom_format2.1.152.1.7biom-formatTo updatebiomformatbiomformatFormattingLaboratory information management, Sequence analysisThe biom-format package provides a command line interface and Python API for working with BIOM files.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.To updatehttps://github.com/biocore/biom-formatMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_format
bioperl1.11.7.8perl-bioperlTo updatebioperlBioPerlData handling, Service invocationGenomics, Software engineering, Data managementConverts GenBank format files to GFF3A 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.To updatehttps://bioperl.org/Sequence Analysisbp_genbank2gff3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bioperl
biscot2.3.32.3.3biscotUp-to-dateBionano scaffolding correction toolUp-to-datehttps://github.com/institut-de-genomique/biscotAssemblybiscotiuchttps://github.com/bgruening/iuc/tree/master/tools/biscot
blast1.7.01.7.0magicblastUp-to-dateMaps 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/blast
blastxml_to_gapped_gff31.10.6.6bcbiogffTo updateBlastXML to gapped GFF3To updateConvert Formats, Sequence Analysisblastxml_to_gapped_gff3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3
bowtie22.5.32.5.3bowtie2Up-to-datebowtie2Bowtie 2Read mappingMapping, Genomics, MappingBowtie2: Fast and sensitive read alignmentBowtie 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.Up-to-datehttp://bowtie-bio.sourceforge.net/bowtie2Next Gen Mappersbowtie2devteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bowtie2
bracken2.92.9brackenUp-to-datebrackenBrackenStatistical calculationMetagenomics, Microbial ecologyBayesian Reestimation of Abundance with KrakENStatistical method that computes the abundance of species in DNA sequences from a metagenomics sample.Up-to-datehttps://ccb.jhu.edu/software/bracken/Sequence Analysis, Metagenomicsbrackeniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bracken
breseq0.35.50.38.3breseqTo updatebreseqbreseqPolymorphism detectionSequencing, Sequence analysis, DNA mutationPredicts mutations in microbial genomesRuns Breseq software on a set of fastq files.To updatehttps://github.com/barricklab/breseqVariant Analysisbreseqiuc
busco5.5.05.6.1buscoTo updatebuscoBUSCOSequence assembly validation, Scaffolding, Genome assembly, Transcriptome assemblySequence assembly, Genomics, Transcriptomics, Sequence analysisBUSCO assess genome and annotation completenessProvides 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.To updatehttps://gitlab.com/ezlab/busco/-/releasesSequence Analysisbuscoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/busco/
bwa0.7.170.7.17bwaUp-to-datebwaBWAGenome indexing, Sequence alignment, Read mapping, Sequence alignment, Generation, Sequence alignment, Generation, Sequence alignment, Sequence alignmentMappingWrapper for bwa mem, aln, sampe, and samseFast, accurate, memory-efficient aligner for short and long sequencing readsUp-to-datehttp://bio-bwa.sourceforge.net/Next Gen Mappersbwadevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa
bwa_mem22.2.12.2.1bwa-mem2Up-to-datebwa-mem2Bwa-mem2Sequence alignmentMappingBwa-mem2 is the next version of the bwa-mem algorithm in bwa.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.Up-to-datehttps://github.com/bwa-mem2/bwa-mem2Next Gen Mappersbwa_mem2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa_mem2
bwameth0.2.60.2.7bwamethTo updateFast and accurate alignment of BS-seq readsTo updatehttps://github.com/brentp/bwa-methSequence Analysis, Next Gen Mappersbwamethiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bwameth
cactus2.7.1To updatecactusCactusMultiple sequence alignment, Genome alignmentGenomics, Sequence analysis, Phylogeny, Sequence assembly, Mapping, PhylogeneticsCactus is a reference-free whole-genome multiple alignment programCactus is a reference-free whole-genome multiple alignment program.To updatehttps://github.com/ComparativeGenomicsToolkit/cactusSequence Analysiscactusgalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cactus
calculate_contrast_threshold1.0.0numpyTo updateCalculates 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_threshold
calculate_numeric_param0.1.0To updateCalculate a numeric parameter value using integer and float values.To updateText Manipulationcalculate_numeric_paramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/calculate_numeric_param
cat5.2.35.3catTo updatecat_binsCAT and BATTaxonomic classification, Sequence assembly, Coding region predictionMetagenomics, Metagenomic sequencing, Taxonomy, Sequence assemblyContig Annotation Tool (CAT)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.To updatehttps://github.com/dutilh/CATMetagenomicscontig_annotation_tooliuchttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cat
cdhit4.8.14.8.1cd-hitUp-to-datecd-hitcd-hitSequence clusteringSequencingCluster or compare biological sequence datasetsCluster a nucleotide dataset into representative sequences.Up-to-datehttp://weizhongli-lab.org/cd-hit/Sequence Analysis, Fasta Manipulationcd_hitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhit
cemitool1.18.11.26.0bioconductor-cemitoolTo updatecemitoolCEMiToolEnrichment analysis, Pathway or network analysisGene expression, Transcriptomics, Microarray experimentGene co-expression network analysis toolIt 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.To updatehttps://www.bioconductor.org/packages/release/bioc/html/CEMiTool.htmlTranscriptomics, RNA, Statisticscemitooliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool
charts1.0.1r-getoptTo updateEnables advanced visualization options in Galaxy ChartsTo updateVisualizationchartsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/
checkm1.2.01.2.2checkm-genomeTo updatecheckmCheckMOperationGenomics, Phylogenomics, Phylogenetics, Taxonomy, MetagenomicsAssess the quality of microbial genomes recovered from isolates, single cells, and metagenomesCheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes.To updatehttps://github.com/Ecogenomics/CheckMMetagenomicscheckmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/checkm
cherri0.70.8cherriTo updatecherricherriMolecular interactions, pathways and networks, Structure analysis, Machine learningComputational Help Evaluating RNA-RNA interactionsCheRRI 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.To updatehttps://github.com/BackofenLab/CherriTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cherri
chira1.4.31.4.3chiraUp-to-datechiraChiRARNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNAChimeric Read Annotator for RNA-RNA interactome dataChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc.Up-to-datehttps://github.com/pavanvidem/chiraRNA, Transcriptomics, Sequence Analysischiraiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chira
chopin21.0.7chopin2To updateDomain-Agnostic Supervised Learning with Hyperdimensional ComputingTo updatehttps://github.com/cumbof/chopin2Machine Learningchopin2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chopin2
chromeister1.5.a1.5.achromeisterUp-to-dateultra-fast pairwise genome comparisonsUp-to-datehttps://github.com/estebanpw/chromeisterSequence Analysischromeisteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chromeister
circexplorer22.3.82.3.8circexplorer2Up-to-datecircexplorer2CIRCexplorer2RNA splicing, Gene transcripts, Literature and languageComprehensive and integrative circular RNA analysis toolset.Genome-wide annotation of circRNAs and their alternative back-splicing/splicing.Up-to-datehttps://github.com/YangLab/CIRCexplorer2RNA, Assemblycircexplorer2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2
circos0.69.80.69.9circosTo updategalactic_circosGalactic CircosSequence visualisationBuild Circos Plots in GalaxyGalactic Circos is a Galaxy wrapper providing a GUI for the Circos tool. Circos allows visualizing data in a circular format.To updatehttp://circos.ca/Graphicscircosiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/circos
cite_seq_count1.4.41.4.4cite-seq-countUp-to-dateCITE-seq-CountCITE-seq-CountRNA-Seq quantificationTranscriptomics, Immunoproteins and antigensCount CMO/HTOTool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment.Up-to-datehttps://github.com/Hoohm/CITE-seq-CountTranscriptomicscite_seq_countiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count
clair30.1.121.0.5clair3To updateclair3Clair3Variant callingMolecular geneticsSymphonizing pileup and full-alignment for high-performance long-read variant callingClair3 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.To updatehttps://github.com/HKU-BAL/Clair3Sequence Analysis, Variant Analysisclair3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/clair3
clustalw2.12.1clustalwUp-to-date\n clustal2\nClustalW multiple sequence alignment program for DNA or proteinsUp-to-datehttp://www.clustal.org/clustal2/Phylogenetics, Sequence Analysisclustalwdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/clustalw
cnv-phenopacket1.0.2cnv-phenopacketTo updatecnv-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-phenopacket
cnv-vcf2json1.0.4cnv-vcf2jsonTo updatecnv-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-vcf2json
cnvkit0.9.100.9.10cnvkitUp-to-datecnvkitCNVkitVariant callingDNA structural variationdetecting copy number variants and alterations genome-wide from high-throughput sequencingCNVkit is a software toolkit to infer and visualize copy number from targeted DNA sequencing data.Up-to-datehttps://github.com/etal/cnvkitVariant Analysiscnvkitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cnvkit
codeml4.94.10.7pamlTo updatepamlPAMLProbabilistic sequence generation, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Phylogenetic tree analysisPhylogenetics, Sequence analysisDetects positive selectionPackage of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood.To updatehttp://abacus.gene.ucl.ac.uk/software/paml.htmlPhylogeneticscodemliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/codeml
cojac0.9.10.9.1cojacUp-to-datecojacCOJACGenetic variationco-occurrence of mutations on ampliconsCoOccurrence 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.Up-to-datehttps://github.com/cbg-ethz/cojacMetagenomics, Sequence Analysiscojaciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cojac
colibread24.7.14+galaxy024.7.14commetTo updateColib'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/colibread
collection_column_join0.0.38.25coreutilsTo updateColumn Join on CollectionsTo updateText Manipulationcollection_column_joiniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_column_join
collection_element_identifiers0.0.2To updateExtract element identifiers of a collectionTo updateText Manipulationcollection_element_identifiersiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_element_identifiers
column_maker2.0pythonTo updateCompute an expression on every rowTo updateText Manipulationcolumn_makerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_maker
column_order_header_sort0.0.1pythonTo updateSort Column Order by headingTo updateText Manipulationcolumn_order_header_sortiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_order_header_sort
column_remove_by_header1.0pythonTo updateRemove columns by headerTo updateText Manipulationcolumn_remove_by_headeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_remove_by_header
compleasm0.2.50.2.5compleasmUp-to-dateCompleasm: a faster and more accurate reimplementation of BUSCOUp-to-datehttps://github.com/huangnengCSU/compleasmSequence Analysiscompleasmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/compleasm/
compose_text_param0.1.1To updateCompose a text parameter value using text, integer and float valuesTo updateText Manipulationcompose_text_paramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/compose_text_param
compress_file0.1.0gzipTo updateCompress files.To updateText Manipulationcompress_fileiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/compress_file
concoct1.1.01.1.0concoctUp-to-dateconcoctCONCOCTSequence clustering, Read binningMetagenomicsCONCOCT (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.A program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads.Up-to-datehttps://github.com/BinPro/CONCOCTMetagenomicsconcoctiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/concoct
coverage_report0.0.41.76perl-number-formatTo updateGenerate Detailed Coverage Report from BAM fileTo updatehttps://github.com/galaxyproject/tools-iucSequence Analysiscoverage_reportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/coverage_report
coverm0.7.00.7.0covermUp-to-datecovermCoverMLocal alignmentBioinformaticsCoverM genome and contig wrappersRead coverage calculator for metagenomicsUp-to-datehttps://github.com/wwood/CoverMSequence Analysiscovermiuchttps://github.com/galaxyproject/tools-iuc/tools/coverm
crispr_studio1+galaxy01crispr_studioTo updateCRISPR Studio is a program developed to facilitate and accelerate CRISPR array visualization.To updatehttps://github.com/moineaulab/CRISPRStudioSequence Analysiscrispr_studioiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/crispr_studio/
crosscontamination_barcode_filter0.32.2.1r-ggplot2To updateBarcode contamination discovery toolTo updateTranscriptomics, Visualizationcrosscontamination_barcode_filteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filter
crossmap0.6.10.7.0crossmapTo updateCrossMap 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/crossmap
cutadapt4.64.6cutadaptUp-to-datecutadaptCutadaptSequence trimmingGenomics, Probes and primers, SequencingFlexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq).Find and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads.Up-to-datehttps://cutadapt.readthedocs.org/en/stable/Fasta Manipulation, Fastq Manipulation, Sequence Analysiscutadaptlparsonshttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapt
cutesv1.0.82.1.0cutesvTo updatecuteSVcuteSVSplit read mapping, Genotyping, Structural variation detectionDNA structural variation, Sequencing, Computer scienceLong-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.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 analysisTo updatehttps://github.com/tjiangHIT/cuteSVVariant Analysiscutesviuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cutesv
cwpair21.1.1matplotlibTo updateContains 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/cwpair2
dada21.30.0bioconductor-dada2To updatedada2dada2Variant calling, DNA barcodingSequencing, Genetic variation, Microbial ecology, MetagenomicsDADA2 wrappersThis 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.To updatehttps://benjjneb.github.io/dada2/index.htmlMetagenomicsdada2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dada2
das_tool1.1.71.1.7das_toolUp-to-datedastooldastoolRead binningMetagenomicsDAS Tool for genome resolved metagenomicsDAS 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.Up-to-datehttps://github.com/cmks/DAS_ToolMetagenomicsdas_tooliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool
data_source_iris_tcga1.0.0pythonTo updateIRIS-TCGA Data source toolTo updateData Sourcedata_source_iris_tcgaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/data_source_iris_tcga
datamash1.81.1.0datamashTo updateGNU 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/datamash
decontaminator1.0.0numpyTo updatedecontaminatorDeep Learning method for novel virus detection in sequencing dataTo updatehttps://github.com/cbib/decontaminatorMachine Learningdecontaminatoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/decontaminator
deepmicro1.41.4deepmicroUp-to-date\n DeepMicro\nRepresentation learning and classification frameworkUp-to-datehttps://github.com/paulzierep/DeepMicroMachine Learningdeepmicroiuchttps://github.com/paulzierep/DeepMicro
deepsig1.2.51.2.5deepsigUp-to-datePredictor of signal peptides in proteins based on deep learningUp-to-datehttps://github.com/BolognaBiocomp/deepsigGenome annotationdeepsigiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deepsig
deepvariant1.5.0To updateDeepVariant is a deep learning-based variant callerTo updatehttps://github.com/google/deepvariantVariant Analysisdeepvariantiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deepvariant
deg_annotate1.1.02.31.1bedtoolsTo updateAnnotate DESeq2/DEXSeq output tablesTo updateTranscriptomicsdeg_annotateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate
delly0.9.11.2.6dellyTo updatedelly2Delly2Indel detection, Structural variation detection, Variant calling, Genotyping, Genetic variation analysisDNA structural variation, Sequencing, Pathology, Genomics, Genetic variation, Bioinformatics, Population genomics, Rare diseasesDelly 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.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.To updatehttps://github.com/dellytools/dellyVariant Analysisdellyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/delly
deseq22.11.40.81.42.0bioconductor-deseq2To updateDESeq2DESeq2Differential gene expression analysisTranscriptomicsDifferential gene expression analysis based on the negative binomial distributionR/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.To updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsdeseq2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2
dexseq1.441.48.0bioconductor-dexseqTo updatedexseqDEXSeqEnrichment analysis, Exonic splicing enhancer predictionRNA-SeqInference of differential exon usage in RNA-SeqThe 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.To updatehttps://www.bioconductor.org/packages/release/bioc/html/DEXSeq.htmlTranscriptomics, RNA, Statisticsdexseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq
diamond2.0.152.1.9diamondTo updatediamondDiamondSequence alignment analysisSequence analysis, ProteinsDIAMOND is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR.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.To updatehttps://github.com/bbuchfink/diamondSequence Analysisdiamondbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond
diffbind2.10.03.12.0bioconductor-diffbindTo updatediffbindDiffBindDifferential binding analysisChIP-seqDiffbind provides functions for processing ChIP-Seq data.Compute differentially bound sites from multiple ChIP-seq experiments using affinity (quantitative) data. Also enables occupancy (overlap) analysis and plotting functions.To updatehttp://bioconductor.org/packages/release/bioc/html/DiffBind.htmlChIP-seqdiffbindbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/diffbind
dimet0.2.10.2.2dimetTo updateDIMet is a bioinformatics pipeline for differential analysis of isotopic targeted labeling data.To updatehttps://github.com/cbib/DIMetMetabolomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/DIMet
disco1.2discoTo updatediscoDISCOProtein sequence analysisStructure determinationDISCO is a overlap-layout-consensus (OLC) metagenome assemblerDISCO 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.To updatehttp://disco.omicsbio.org/Metagenomics, Assemblydiscoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/
dnabot3.1.0dnabotTo updateDNA assembly using BASIC on OpenTronsTo updatehttps://github.com/BASIC-DNA-ASSEMBLY/DNA-BOTSynthetic Biologydnabotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dnabot
dnaweaver1.0.21.0.2dnaweaver_synbiocadUp-to-dateGiven 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/dnaweaver
dram1.3.51.4.6dramTo updatedramDRAMGene functional annotationMetagenomics, Biological databases, Molecular geneticsDRAM for distilling microbial metabolism to automate the curation of microbiome functionDistilled and Refined Annotation of Metabolism: A tool for the annotation and curation of function for microbial and viral genomesTo updatehttps://github.com/WrightonLabCSU/DRAMMetagenomicsdramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dram
drep3.4.53.5.0drepTo updatedrepdRepGenome comparisonMetagenomics, Genomics, Sequence analysisdRep compares and dereplicates genome setsFast and accurate genomic comparisons that enables improved genome recovery from metagenomes through de-replication.To updatehttps://github.com/MrOlm/drepMetagenomicsdrepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/drep
dropletutils1.10.01.22.0bioconductor-dropletutilsTo updatedropletutilsDropletUtilsLoading, Community profilingGene expression, RNA-seq, Sequencing, TranscriptomicsDropletUtils - Utilities for handling droplet-based single-cell RNA-seq dataProvides 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.To updatehttps://bioconductor.org/packages/devel/bioc/html/DropletUtils.htmlTranscriptomics, Sequence Analysisdropletutilsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/
ebi_tools0.1.0sixTo updateTools 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_tools
edger3.36.04.0.2bioconductor-edgerTo updateedgeredgeRDifferential gene expression analysisGenetics, RNA-Seq, ChIP-seqPerform RNA-Seq differential expression analysis using edgeR pipelineDifferential 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.To updatehttp://bioconductor.org/packages/release/bioc/html/edgeR.htmlTranscriptomics, RNA, Statisticsedgeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/edger
egsea1.20.01.28.0bioconductor-egseaTo updateegseaEGSEAGene set testingSystems biologyThis tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testingThis package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing.To updatehttps://bioconductor.org/packages/release/bioc/html/EGSEA.htmlTranscriptomics, RNA, Statisticsegseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea
emboss_55.0.06.6.0embossTo updateembossEMBOSSSequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignmentMolecular biology, Sequence analysis, BiologyGalaxy wrappers for EMBOSS version 5.0.0 toolsDiverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool.To updatehttp://emboss.open-bio.org/Sequence Analysis, Fasta Manipulationemboss_5devteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5
ena_upload0.6.30.7.1ena-upload-cliTo updateSubmits experimental data and respective metadata to the European Nucleotide Archive (ENA).To updatehttps://github.com/usegalaxy-eu/ena-upload-cliData Exportena_uploadiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ena_upload
enasearch0.2.2enasearchTo updateA Python library for interacting with ENA's APITo updatehttps://github.com/bebatut/enasearchData Sourceenasearchiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/enasearch
ensembl_vep110.1111.0ensembl-vepTo updateEnsembl VEP: Annotate VCFs with variant effect predictionsTo updatehttps://github.com/Ensembl/ensembl-vepVariant Analysisensembl_vepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ensembl_vep
episcanpy0.3.20.4.0episcanpyTo updateepiscanpyepiScanpyEnrichment analysis, ImputationEpigenomics, Cell biology, DNAEpiScanpy – Epigenomics single cell analysis in pythonEpigenomics Single Cell Analysis in Python.To updatehttps://github.com/colomemaria/epiScanpyEpigeneticsepiscanpyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/
exomedepth1.1.01.1.16r-exomedepthTo updateexomedepthExomeDepthSequence analysis, Variant calling, Genotyping, Copy number estimationExome sequencing, Gene transcripts, Mapping, Sequencing, Genetic variation, Rare diseasesExomeDepth: Calls copy number variants (CNVs) from targeted sequence dataCopy 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.To updatehttps://cran.r-project.org/package=ExomeDepthSequence Analysis, Variant Analysisexomedepthcrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/exomedepth
exonerate2.4.02.4.0exonerateUp-to-dateexonerateExoneratePairwise sequence alignment, Protein threading, Genome alignmentSequence analysis, Sequence sites, features and motifs, Molecular interactions, pathways and networksExonerate is a generic tool for pairwise sequence comparison.A tool for pairwise sequence alignment. It enables alignment for DNA-DNA and DNA-protein pairs and also gapped and ungapped alignment.Up-to-datehttps://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerateSequence Analysisexonerateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/exonerate
export2graphlan0.200.22export2graphlanTo updateexport2graphlanexport2graphlanConversionTaxonomy, Metabolomics, Biomarkersexport2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAnexport2graphlan 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.To updatehttps://bitbucket.org/CibioCM/export2graphlan/overviewMetagenomicsexport2graphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/export2graphlan/
extract_genomic_dna3.0.3+galaxy20.11.0bx-pythonTo updateContains 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_dna
fargene0.10.1fargeneUp-to-datefargenefARGeneAntimicrobial resistance predictionMetagenomics, Microbiology, Public health and epidemiologyfARGene (Fragmented Antibiotic Resistance Gene iENntifiEr )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.Up-to-datehttps://github.com/fannyhb/fargeneSequence Analysisfargeneiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fargene
fasta_nucleotide_color_plot1.0.1openjdkTo updateContains 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_plot
fasta_stats2.0numpyTo updateDisplay 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/
fastani1.31.34fastaniTo updateFast alignment-free computation of whole-genome Average Nucleotide IdentityTo updatehttps://github.com/ParBLiSS/FastANISequence Analysisfastaniiuc
fastp0.23.4fastpTo update\n fastp\nFast all-in-one preprocessing for FASTQ filesTo updatehttps://github.com/OpenGene/fastpSequence Analysisfastpiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastp
fastqc0.74+galaxy00.12.1fastqcTo updatefastqcFastQCSequence composition calculation, Sequencing quality control, Statistical calculationSequencing, Data quality management, Sequence analysisRead QC reports using FastQCThis 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.To updatehttp://www.bioinformatics.babraham.ac.uk/projects/fastqc/Fastq Manipulationfastqcdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc
fastqe0.3.1+galaxy00.3.1fastqeTo updatefastqeFASTQESequencing quality controlSequence analysis, SequencingFASTQECompute quality stats for FASTQ files and print those stats as emoji... for some reason.To updatehttps://fastqe.com/Sequence Analysisfastqeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqe
fasttree2.1.102.1.11fasttreeTo updatefasttreeFastTreePhylogenetic tree generation (from molecular sequences), Phylogenetic tree generation (maximum likelihood and Bayesian methods)Phylogenetics, Sequence analysisFastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences - GVLInfers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences.To updatehttp://www.microbesonline.org/fasttree/Phylogeneticsfasttreeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fasttree
featurecounts2.0.32.0.6subreadTo updatefeaturecountsFeatureCountsRead summarisationSequencingfeatureCounts counts the number of reads aligned to defined masked regions in a reference genomefeatureCounts 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.To updatehttp://bioinf.wehi.edu.au/featureCountsRNA, Transcriptomics, Sequence Analysisfeaturecountsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts
feelnc0.2.10.2feelncTo updatefeelncFEELncAnnotation, ClassificationRNA-seq, Functional, regulatory and non-coding RNAGalaxy wrapper for FEELncA tool to annotate long non-coding RNAs from RNA-seq assembled transcripts.To updatehttps://github.com/tderrien/FEELncSequence Analysisfeelnciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/feelnc
fermikitr193r193fermi2Up-to-dateFermiKit 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/fermikit
fgsea1.8.0+galaxy11.28.0bioconductor-fgseaTo updatefgseafgseaGene-set enrichment analysisGeneticsPerform gene set testing using fgseaThe 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.To updatehttps://bioconductor.org/packages/release/bioc/html/fgsea.htmlVisualization, Transcriptomics, Statisticsfgseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fgsea
filtlong0.2.10.2.1filtlongUp-to-date\n filtlong\nFiltlong - Filtering long reads by qualityUp-to-datehttps://github.com/rrwick/FiltlongFastq Manipulation, Sequence Analysisfiltlongiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlong
flair1.52.0.0flairTo updateFLAIR (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/flair
flash1.2.111.2.11flashUp-to-dateflashFLASHRead pre-processing, Sequence merging, Sequence assemblySequencing, Sequence assemblyFast Length Adjustment of SHort readsIdentifies paired-end reads which overlap in the middle, converting them to single long readsUp-to-datehttps://ccb.jhu.edu/software/FLASH/Assembly, Fastq Manipulationflashiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/flash
fraggenescan1.31fraggenescanTo updatefraggenescanFragGeneScanGene predictionGenetics, Sequence analysisTool for finding (fragmented) genes in short readApplication for finding (fragmented) genes in short readsTo updatehttps://sourceforge.net/projects/fraggenescan/Sequence Analysisfraggenescaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fraggenescan/
freebayes1.3.61.3.7freebayesTo updatefreebayesFreeBayesVariant calling, Statistical calculationGenomics, Genetic variation, Rare diseasesGalaxy Freebayes Bayesian genetic variant detector toolBayesian 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.To updatehttps://github.com/ekg/freebayesVariant Analysisfreebayesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes
freec11.6gawkTo updatefreecFREECCopy number estimation, Variant calling, Genome alignmentDNA structural variation, Oncology, Human genetics, Data miningControl-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.A tool for control-free copy number alteration (CNA) and allelic imbalances (LOH) detection using deep-sequencing data, particularly useful for cancer studies.To updatehttp://boevalab.inf.ethz.ch/FREEC/Variant Analysiscontrol_freeciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/freec
freyja1.4.41.4.9freyjaTo updatefreyjalineage abundances estimationTo updatehttps://github.com/andersen-lab/FreyjaMetagenomics, Sequence Analysisfreyjaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/freyja
fsd1.0.2matplotlibTo updateTool that plots a histogram of sizes of read familiesTo updateGraphicsduplex_family_size_distributioniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fsd
funannotate1.8.15To update\n funannotate\nFunannotate is a genome prediction, annotation, and comparison software package.To updatehttps://funannotate.readthedocs.ioGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate
gatk44.1.7.04.5.0.0gatk4To updateA Galaxy wrapper for Mutect2 from GATKTo updatehttps://software.broadinstitute.org/gatk/gatk4Variant Analysisgatk4_mutect2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gatk4
gdcwebapp1.0.0pythonTo updateGDCWebApp 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/GDCWebApp4Galaxy
gecko1.21.2geckoUp-to-dateUngapped genome comparisonUp-to-datehttps://github.com/otorreno/geckoSequence Analysisgeckoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gecko
gemini0.20.10.30.2geminiTo updategeminiGEMINISequence analysis, Genetic variation analysisSequence analysisGEMINI: a flexible framework for exploring genome variationGEMINI (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.To updatehttps://github.com/arq5x/geminiSequence Analysis, Next Gen Mappersgeminiiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini
genebed_maf_to_fasta1.0.1+galaxy0To updateStitch 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/
genehunter_modscore3.0.03.1ghmTo updateMaximised LOD score pedigree analysis utilityTo updatehttps://www.helmholtz-muenchen.de/en/ige/service/software-download/genehunter-modscore/index.htmlVariant Analysisgenehunter_modscoreiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genehunter_modscore/
geneiobio4.7.1+galaxy1To updateGene.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/geneiobio
genetracknumpyTo updateContains 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/genetrack
genomescope2.02.0genomescope2Up-to-dateAnalyze unassembled short readsUp-to-datehttps://github.com/tbenavi1/genomescope2.0Statisticsgenomescopeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genomescope
genomic_super_signature1.2.01.10.0bioconductor-genomicsupersignatureTo updategenomicsupersignatureGenomicSuperSignatureGene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reductionRNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experimentInterpretation of RNAseq experiments through robust, efficient comparison to public databasesGenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases.To updatehttps://github.com/shbrief/GenomicSuperSignatureSequence Analysis, RNA, Transcriptomicsgenomic_super_signatureiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signature
genrich0.5+galaxy20.6.1genrichTo updateGenrich is a peak-caller for genomic enrichment assays (e.g. ChIP-seq, ATAC-seq).To updatehttps://github.com/jsh58/GenrichChIP-seqgenrichiuchttps://github.com/jsh58/Genrich
get_hrun0.5.9.20.8.1.1pyfaidxTo updateAnnotate 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_hrun
getorganelle1.7.7.01.7.7.0getorganelleUp-to-dategetorganelleGetOrganelleDe-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimmingCell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organismsGetOrganelle - This toolkit assembles organelle genomes from genomic skimming data.A fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data.Up-to-datehttps://github.com/Kinggerm/GetOrganelleAssemblygetorganelleiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganelle
gfa_to_fa0.1.2To updategfa_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_fa
gff3_rebase1.20.6.6bcbiogffTo updateRebase 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_rebase
gffcompare0.12.60.12.6gffcompareUp-to-dategffcomparegffcompareSequence annotationNucleic acids, Sequence analysisGalaxy wrappers for Geo Pertea's GffCompare package.Program for comparing, annotating, merging and tracking transcripts in GFF files.Up-to-datehttps://github.com/gpertea/gffcompare/Transcriptomicsgffcompareiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcompare
gffread0.12.70.12.7gffreadUp-to-dategffreadgffreadSequence annotationNucleic acids, Sequence analysisgffread filters and/or converts GFF3/GTF2 recordsprogram for filtering, converting and manipulating GFF filesUp-to-datehttp://ccb.jhu.edu/software/stringtie/gff.shtml#gffread/Sequence Analysisgffreaddevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gffread
ggplot23.4.0r-baseTo updateggplot2ggplot2VisualisationData visualisationggplot2 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.Plotting system for R, based on the grammar of graphics.To updatehttps://github.com/tidyverse/ggplot2Visualizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2
ggupset1.0r-ggupsetTo updateCreate Upset Plots with ggupsetTo updatehttps://github.com/const-ae/ggupsetGraphicsggupsetiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ggupset
glimmer3.02glimmerTo updategeminiGEMINISequence analysis, Genetic variation analysisSequence analysisGlimmer makes gene predictions.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.To updatehttps://ccb.jhu.edu/software/glimmer/Sequence Analysisbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmer
goenrichment2.0.12.0.1goenrichmentUp-to-dategoenrichmentGOEnrichmentGene-set enrichment analysisTranscriptomicsPerforms GO Enrichment analysis.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.Up-to-datehttps://github.com/DanFaria/GOEnrichmentGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment
goseq1.50.01.54.0bioconductor-goseqTo updategoseqGOseqGene functional annotationRNA-Seqgoseq does selection-unbiased testing for category enrichment amongst differentially expressed (DE) genes for RNA-seq dataDetect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data.To updatehttps://bioconductor.org/packages/release/bioc/html/goseq.htmlStatistics, RNA, Micro-array Analysisgoseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/goseq
gprofiler@TOOL_VERSION@+galaxy11r-gprofiler2To updatefunctional 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/
graphembed2.42.4graph_embedUp-to-dateCompute 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/
graphlan1.1.3graphlanTo updategraphlanGraPhlAnPhylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classificationMetagenomics, Phylogenetics, Phylogenomics, CladisticsGraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic treesGraPhlAn 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.To updatehttps://github.com/biobakery/graphlanMetagenomics, Graphics, Phylogeneticsgraphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2/
gtdbtk2.3.22.3.2gtdbtkUp-to-dateGTDB-TkGTDB-TkGenome alignment, Taxonomic classification, Sequence assembly, Query and retrievalMetagenomics, Taxonomy, Phylogenetics, Database management, ProteinsGTDB-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.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).Up-to-datehttps://github.com/Ecogenomics/GTDBTkMetagenomicsgtdbtkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gtdbtk
gtfToBed12357447ucsc-gtftogenepredTo updateUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesSequence analysisConvert GTF files to BED12 formatUtilities for handling sequences and assemblies from the UCSC Genome Browser project.To 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/gtfToBed12
gubbins3.2.13.3.3gubbinsTo updategubbinsGubbinsGenotyping, Phylogenetic inference, Ancestral reconstructionPhylogeny, Genotype and phenotype, Whole genome sequencingGubbins - bacterial recombination detectionGubbins is a tool for rapid phylogenetic analysis of large samples of recombinant bacterial whole genome sequences.To updateSequence Analysisgubbinsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gubbins
gvcftools0.10.17.0gvcftoolsTo updateTo updatehttps://github.com/sequencing/gvcftoolsVariant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gvcftools
gwastools0.1.01.48.0bioconductor-gwastoolsTo updategwastoolsGWASToolsDeposition, Analysis, AnnotationGWAS studyClasses for storing very large GWAS data sets and annotation, and functions for GWAS data cleaning and analysis.To updatehttps://bioconductor.org/packages/release/bioc/html/GWASTools.htmlVisualization, Variant Analysisiuc
hamronization1.0.31.1.4hamronizationTo updatehamronizationhAMRonizationData handling, Antimicrobial resistance prediction, ParsingPublic health and epidemiology, Microbiology, BioinformaticsConvert AMR gene detection tool output to hAMRonization specification format.Parse multiple Antimicrobial Resistance Analysis Reports into a common data structureTo updatehttps://github.com/pha4ge/hAMRonizationSequence Analysishamronizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hamronization
hansel2.6.12.6.1bio_hanselUp-to-dateBiohanselBioHanselGenotyping, SNP detection, Genome assemblyWhole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural scienceHeidelberg and Enteritidis SNP ElucidationBioHansel 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.Up-to-datehttps://github.com/phac-nml/bio_hanselSequence Analysisbio_hanseliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel
hapcut21.3.31.3.3hapcut2Up-to-datehapcut2HapCUT2Haplotype mapping, Variant classificationRobust and accurate haplotype assembly for diverse sequencing technologiesHapCUT2 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.mdUp-to-datehttps://github.com/vibansal/HapCUT2Assemblyhapcut2galaxy-australiahttps://github.com/galaxyproject/tools-iuc
hapog1.3.71.3.7hapogUp-to-datehapogHapo-GGenome assembly, Optimisation and refinementSequence assembly, GenomicsHapo-G - Haplotype-Aware Polishing of GenomesHapo-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.Up-to-datehttps://github.com/institut-de-genomique/HAPO-GAssemblyhapogiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog
happy0.3.140.3.15hap.pyTo updatehap.pyhap.pyVariant calling, Sequence analysis, GenotypingGenomics, DNA polymorphismA tool to perform comparisons only based on chromosome, position, and allele identity for comparison of somatic callsets.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.To updatehttps://github.com/Illumina/hap.pyVariant Analysishappyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/happy
heatmap23.1.3.12.17.0r-gplotsTo updateheatmap.2 function from the R gplots packageTo updatehttps://github.com/cran/gplotsVisualizationggplot2_heatmap2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/heatmap2
heinz1.01.62.0bioconductor-bionetTo updatebionetBioNetProtein interaction analysisMolecular interactions, pathways and networks, Protein interactionsAn algorithm for identification of the optimal scoring subnetwork.This package provides functions for the integrated analysis of protein-protein interaction networks and the detection of functional modules. Different datasets can be integrated into the network by assigning p-values of statistical tests to the nodes of the network. By fitting a beta-uniform mixture model and calculating scores from these p-values, overall scores of network regions can be calculated and an integer linear programming algorithm identifies the maximum scoring subnetwork.To updatehttps://github.com/ls-cwi/heinzTranscriptomics, Visualization, Statisticsheinziuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz
hicexplorer3.7.23.7.3hicexplorerTo updateHiCExplorer: Set of programs to process, analyze and visualize Hi-C data.To updatehttps://github.com/deeptools/HiCExplorerSequence Analysis, Visualizationhicexplorerbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer
hicstuff3.1.53.2.2hicstuffTo updateTo updatehttps://github.com/koszullab/hicstuffSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hicstuff
hifiasm_meta0.3.1hamtv0.3.1hifiasm_metaTo updatehifiasm-metaHifiasm-metaSequence assemblySequence assembly, MetagenomicsA hifiasm fork for metagenome assembly using Hifi reads.Hifiasm_meta - de novo metagenome assembler, based on hifiasm, a haplotype-resolved de novo assembler for PacBio Hifi reads.To updatehttps://github.com/xfengnefx/hifiasm-metaMetagenomicshifiasm_metagalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hifiasm_meta
hisat22.2.12.2.1hisat2Up-to-datehisat2HISAT2Sequence alignmentRNA-seqHISAT2 is a fast and sensitive spliced alignment program.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).Up-to-datehttp://ccb.jhu.edu/software/hisat2/Assemblyhisat2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2
hivclustering1.3.11.6.8python-hivclusteringTo updateInfers 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/
hmmer33.43.4hmmerUp-to-datehmmer3HMMER3Formatting, 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 familiesHMMER 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).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.Up-to-datehttp://hmmer.org/Sequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3
homer4.114.11homerUp-to-datehomerhomerSequence motif discoveryHOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and next-gen sequencing analysis.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.Up-to-datehttp://homer.ucsd.edu/homer/index.htmlSequence Analysisdata_manager_homer_preparseiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/homer
htseq_count2.0.52.0.5htseqUp-to-datehtseqHTSeqNucleic acid sequence analysisSequence analysisCount aligned reads (SAM/BAM) that overlap genomic features (GFF)Python framework to process and analyse high-throughput sequencing (HTS) dataUp-to-datehttps://readthedocs.org/projects/htseq/Genomic Interval Operations, SAM, Sequence Analysis, RNAhtseq_countlparsonshttps://github.com/galaxyproject/tools-iuc/tree/master/tools/htseq_count
humann3.83.8humannUp-to-datehumannhumannSpecies frequency estimation, Taxonomic classification, Phylogenetic analysisMetagenomics, PhylogenomicsHUMAnN for functionally profiling metagenomes and metatranscriptomes at species-level resolutionHUMAnN 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)?”Up-to-datehttp://huttenhower.sph.harvard.edu/humannMetagenomicshumanniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/humann
hybpiper2.1.62.1.6hybpiperUp-to-dateHybPiperHybPiperSequence trimming, Sequence assembly, Read mappingPhylogenetics, Plant biology, Gene transcripts, Sequence assembly, PhylogenomicsAnalyse targeted sequence capture dataParalogs 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.Up-to-datehttps://github.com/mossmatters/HybPiperSequence Analysis, Phylogeneticshybpiperiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hybpiper
hyphy2.5.472.5.59hyphyTo updateHyPhyHyPhyStatistical calculationPhylogeny, Small molecules, Molecular interactions, pathways and networksHypothesis Testing using PhylogeniesSoftware package for the analysis of genetic sequences using techniques in phylogenetics, molecular evolution, and machine learning.To updatehttp://www.hyphy.orgPhylogeneticsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/
hypo1.0.31.0.3hypoUp-to-dateHyPoHyPoOptimisation and refinement, Genome assemblySequence assembly, GenomicsSuper Fast & Accurate Polisher for Long Read Genome AssembliesHyPo, 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.Up-to-datehttps://github.com/kensung-lab/hypoAssemblyhypoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo
icescreen1.3.11.3.2icescreenTo updateicescreenICEscreenDatabase search, Protein feature detectionMobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variationICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes.A tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures.To updatehttps://icescreen.migale.inrae.fr/Genome annotationicescreeniuchttps://forgemia.inra.fr/ices_imes_analysis/icescreen
idba_ud1.1.3idbaTo updateidbaIDBASequence assemblySequence assemblyWrappers for the idba assembler variants.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.To updatehttps://i.cs.hku.hk/~alse/hkubrg/projects/index.htmlAssemblyidbaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud
idr2.0.32.0.4.2idrTo updateGalaxy wrappers for the IDR package from Nathan BoleuTo updatehttps://github.com/nboley/idrSequence Analysisidriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idr/
idr_download0.44.15.11.1omero-pyTo updateImage Data Resource downloading toolTo updatehttps://idr.openmicroscopy.orgData Sourceidr_download_by_idsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idr_download
iedb_api2.15.2pythonTo updateGet 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_api
instrain1.5.31.8.0instrainTo updateinstrainInStrainSNP detection, Genome comparisonMapping, MetagenomicsInStrain is a tool for analysis of co-occurring genome populations from metagenomesInStrain 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 identificationTo updatehttps://instrain.readthedocs.io/en/latest/#Metagenomicsinstrainiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/instrain
integron_finder2.0.32.0.3integron_finderUp-to-dateintegron_finderIntegron FinderNucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotationFunctional genomics, Mobile genetic elements, Molecular biology, Sequence analysis"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"A tool to detect Integron in DNA sequences.Up-to-datehttps://github.com/gem-pasteur/Integron_FinderSequence Analysisintegronfinderiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/integron_finder
intermine_galaxy_exchange0.0.18.25coreutilsTo updateInterMine ExporterTo updateConvert Formatsintermine_galaxy_exchangeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/intermine_galaxy_exchange
interproscan5.59-91.0interproscanTo updateinterproscan_ebiInterProScan (EBI)Sequence motif recognition, Protein feature detectionGene and protein families, Sequence analysisInterproscan queries the interpro database and provides annotations.Scan sequences against the InterPro protein signature databases.To updatehttp://www.ebi.ac.uk/Tools/pfa/iprscan5/Sequence Analysisinterproscanbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interproscan
interval2maf1.0.1+galaxy10.11.0bx-pythonTo updatebx-pythonbx-pythonSequence analysisExtract MAF blocks given a set of intervalsTools for manipulating biological data, particularly multiple sequence alignments.To updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/Genomic Interval Operationsinterval2mafiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/
intervene0.6.50.6.5interveneUp-to-dateinterveneInterveneSequence comparison, Sequence visualisationComputational biologyCreate pairwise and upset plotsTool 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.Up-to-datehttps://intervene.readthedocs.ioStatisticsinterveneiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/intervene
iqtree2.1.22.2.6iqtreeTo updateEfficient phylogenomic software by maximum likelihoodTo updatehttp://www.iqtree.org/Phylogeneticsiqtreeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/iqtree/
irissv1.0.41.19.2samtoolsTo updateRefine insertion sequencesTo updatehttps://github.com/mkirsche/IrisVariant Analysisirissviuchttps://github.com/galaxyproject/tools-iuc/tools/irissv/
isescan1.7.2.31.7.2.1isescanTo updateISEScanISEScanStructural variation detectionGenomics, DNA structural variation, Sequence analysis, Genetic variation"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."Automated identification of insertion sequence elements in prokaryotic genomes.To updatehttps://github.com/xiezhq/ISEScanSequence AnalysisISEScaniuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/isescan
isoformswitchanalyzer1.20.02.2.0bioconductor-isoformswitchanalyzerTo updateIsoformSwitchAnalyzeRIsoformSwitchAnalyzeRSequence comparison, Sequence analysisComputational biology, Gene transcriptsStatistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms.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.To updatehttps://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.htmlTranscriptomics, RNA, Statisticsisoformswitchanalyzeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzer
ivar1.4.21.4.2ivarUp-to-dateiVar 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/
iwtomics1.0.01.26.0bioconductor-iwtomicsTo updateiwtomicsIWTomicsDifferential gene expression analysis, Differentially-methylated region identification, Peak calling, Genome annotation, ComparisonStatistics and probabilityInterval-Wise Testing for Omics DataImplementation 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.To updatehttps://bioconductor.org/packages/release/bioc/html/IWTomics.htmlStatisticsiwtomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/iwtomics
jasminesv1.0.111.1.5jasminesvTo updateMerge structural variants across samplesTo updatehttps://github.com/mkirsche/Jasmine/Variant Analysisjasminesviuchttps://github.com/galaxyproject/tools-iuc/jasminesv/
jbrowse1.16.111.16.11jbrowseUp-to-datejbrowseJBrowseGenome visualisationGenomicsJBrowse Genome Browser integrated as a Galaxy ToolSlick, 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.Up-to-datehttps://jbrowse.orgSequence Analysisjbrowseiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse
jcvi_gff_stats0.8.41.3.9jcviTo updateCompute 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_stats
jellyfish2.3.1kmer-jellyfishTo updateJellyfishJellyfishk-mer countingSequence analysis, GenomicsJellyfish is a tool for fast, memory-efficient counting of k-mers in DNAA command-line algorithm for counting k-mers in DNA sequence.To updatehttps://github.com/gmarcais/JellyfishAssemblyjellyfishiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish
join_files_by_id1.01.11.6r-data.tableTo updateThis tool will join datasets according to a column with identifierTo updateText Manipulationjoin_files_by_idiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id
jq1.01.5jqTo updateJQ is a lightweight and flexible command-line JSON processorTo updatehttps://stedolan.github.io/jq/Text Manipulationjqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jq
jvarkit2020122320201223jvarkit-wgscoverageplotterUp-to-dateJvarkit : Java utilities for BioinformaticsUp-to-datehttps://lindenb.github.io/jvarkit/SAMjvarkitiuchttps://github.com/galaxyproject/iuc/tree/master/tools/jvarkit
kallisto0.48.00.50.1kallistoTo updatekallistokallistoGene expression profilingTranscriptomics, RNA-seq, Gene expressionkallisto 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.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.To updatehttps://pachterlab.github.io/kallisto/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/
kc-align1.0.21.0.2kcalignUp-to-datekc-alignkc-alignMultiple sequence alignmentMappingKc-Align custom toolA fast and accurate tool for performing codon-aware multiple sequence alignmentsUp-to-datehttps://github.com/davebx/kc-alignSequence Analysiskc_aligniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kc-align
khmer3.0.0a33.0.0a3khmerUp-to-datekhmerkhmerStandardisation and normalisation, De-novo assemblySequence assemblyIn-memory nucleotide sequence k-mer counting, filtering, graph traversal and morekhmer 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.Up-to-datehttps://khmer.readthedocs.org/Assembly, Next Gen Mapperskhmeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer
king2.2.72.2.7kingUp-to-dateKinship-based INference for GwasUp-to-datehttp://people.virginia.edu/~wc9c/KING/Variant Analysiskingiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/king/
kleborate2.3.22.3.2kleborateUp-to-datekleborateKleborateMultilocus sequence typing, Genome assembly, Virulence predictionPublic health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencingScreen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC)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).Up-to-datehttps://github.com/katholt/Kleborate/wikiMetagenomicskleborateiuchttps://github.com/katholt/Kleborate
kma1.2.211.4.14kmaTo updateMap with KMATo updatehttps://bitbucket.org/genomicepidemiology/kmaNext Gen Mapperskmaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kma
kofamscan1.3.01.3.0kofamscanUp-to-dateGene function annotation tool based on KEGG Orthology and hidden Markov modelUp-to-datehttps://github.com/takaram/kofam_scanSequence Analysiskofamscaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kofamscan
kraken_biom1.2.01.2.0kraken-biomUp-to-dateCreate 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-biom
kraken_taxonomy_report0.0.31.70biopythonTo updateKraken taxonomy reportTo updatehttps://github.com/blankenberg/Kraken-Taxonomy-ReportMetagenomicskraken_taxonomy_reportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kraken_taxonomy_report
krakentools1.21.2krakentoolsUp-to-datekrakentoolsKrakenToolsVisualisation, AggregationTaxonomy, MetagenomicsKrakenTools is a suite of scripts to be used alongside the KrakenKrakenTools provides individual scripts to analyze Kraken/Kraken2/Bracken/KrakenUniq output filesUp-to-datehttps://github.com/jenniferlu717/KrakenToolsMetagenomicskrakentoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/krakentools
krocus1.0.11.0.3krocusTo updatePredict MLST directly from uncorrected long readsTo updatehttps://github.com/quadram-institute-bioscience/krocusSequence Analysiskrocusiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/krocus
last12051542lastTo updatelastLASTSequence alignmentGenomics, Comparative genomicsLAST finds similar regions between sequences.Short read alignment program incorporating quality scoresTo updatehttp://last.cbrc.jp/Sequence Analysislastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/last
lastz1.04.221.04.22lastzUp-to-datelastzLASTZSequence alignment, Read mappingGenomicsGalaxy wrappers for the Lastz and Lastz_dA tool for (1) aligning two DNA sequences, and (2) inferring appropriate scoring parameters automatically.Up-to-datehttps://github.com/lastz/lastzNext Gen Mapperslastzdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz
lcrgenie1.0.2lcr_genieTo updateLigase Chain Reaction GenieTo updatehttps://github.com/neilswainston/LCRGenieSynthetic Biologylcrgenieiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lcrgenie
legsta0.5.10.5.1legstaUp-to-datePerforms in silico Legionella pneumophila sequence based typing.Up-to-datehttps://github.com/tseemann/legstaSequence Analysislegstaiuchttps://github.com/tseemann/legsta
length_and_gc_content0.1.21.3.2r-optparseTo updateGets 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_content
limma_voom3.58.13.58.1bioconductor-limmaUp-to-datelimmalimmaRNA-Seq analysisMolecular biology, GeneticsPerform RNA-Seq differential expression analysis using limma voom pipelineData analysis, linear models and differential expression for microarray data.Up-to-datehttp://bioconductor.org/packages/release/bioc/html/limma.htmlTranscriptomics, RNA, Statisticslimma_voomiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom
lineagespot1.6.0r-baseTo updatelineagespotlineagespotVariant callingMetagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variationIdentification of SARS-CoV-2 related metagenomic mutations based on a single (or a list of) variant(s) file(s)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).To updatehttps://www.bioconductor.org/packages/release/bioc/html/lineagespot.htmlMetagenomics, Sequence Analysislineagespotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lineagespot
links2.0.12.0.1linksUp-to-datelinksLINKSScaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimmingSequence assembly, Mapping, SequencingScaffold genome assemblies with long reads.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.Up-to-datehttps://github.com/bcgsc/LINKSAssemblylinksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/links
lofreq2.1.52.1.5lofreqUp-to-dateLoFreq 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/lofreq
lorikeet2020lorikeetUp-to-dateTools for M. tuberculosis DNA fingerprinting (spoligotyping)Up-to-datehttps://github.com/AbeelLab/lorikeetSequence Analysislorikeet_spoligotypeiuchttps://github.com/AbeelLab/lorikeet
lumpy_sv0.3.10.3.1lumpy-svUp-to-dateLUMPY - a general probabilistic framework for structural variant discoveryUp-to-datehttp://layerlab.org/software/Variant Analysislumpy_sviuchttps://github.com/arq5x/lumpy-sv
m6anet2.1.02.1.0m6anetUp-to-datem6Anetm6AnetQuantification, Imputation, Gene expression profilingRNA-Seq, Transcriptomics, RNA, Machine learningm6anet to detect m6A RNA modifications from nanopore dataDetection of m6A from direct RNA sequencing using a Multiple Instance Learning framework.Up-to-datehttps://m6anet.readthedocs.io/en/latestSequence Analysism6anetiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/m6anet
maaslin20.99.120.99.12maaslin2Up-to-dateMaAsLin2 is comprehensive R package for efficiently determining multivariable association between microbial meta'omic features and clinical metadata.Up-to-datehttp://huttenhower.sph.harvard.edu/maaslinMetagenomicsmaaslin2iuchttps://github.com/biobakery/Maaslin2
macs22.2.9.12.2.9.1macs2Up-to-datemacsMACSPeak calling, Enrichment analysis, Gene regulatory network analysisChIP-seq, Molecular interactions, pathways and networks, Transcription factors and regulatory sitesMACS - Model-based Analysis of ChIP-SeqModel-based Analysis of ChIP-seq data.Up-to-datehttps://github.com/taoliu/MACSSequence Analysis, Statisticsmacs2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2
maf_stats1.0.2+galaxy0To updateMAF 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/
mageck0.5.9.20.5.9.5mageckTo updatemageckMAGeCKGenetic variation analysisGenetics, Genetic variation, GenomicsModel-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.Computational tool to identify important genes from the recent genome-scale CRISPR-Cas9 knockout screens technology.To updatehttps://sourceforge.net/projects/mageck/Genome editingiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mageck
maker2.31.113.01.03makerTo updatemakerMAKERGenome annotationGenomics, DNA, Sequence analysisMAKER 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.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.To updatehttp://www.yandell-lab.org/software/maker.htmlSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/maker
malt0.5.30.62maltTo updateAligns 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/malt
map_param_value0.2.0To updateMap a parameter value to another valueTo updateText Manipulationmap_param_valueiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/map_param_value
mapseq2.1.1perlTo updatefast and accurate sequence read classification tool designed to assign taxonomy and OTU classifications to ribosomal RNA sequences.To updatehttps://github.com/jfmrod/MAPseqMetagenomicsmapseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mapseq
mash2.32.3mashUp-to-datemashMashSequence distance matrix generationGenomics, Metagenomics, Statistics and probability, Sequence analysis, DNA mutationFast genome and metagenome distance estimation using MinHashFast genome and metagenome distance estimation using MinHash.Up-to-datehttps://github.com/marbl/MashMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mash
mashmap3.1.33.1.3mashmapUp-to-dateFast local alignment boundariesUp-to-datehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmapSequence Analysismashmapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmap
masigpro1.49.38.25coreutilsTo updatemasigpromaSigProRegression analysisGene expression, Molecular genetics, Microarray experiment, RNA-SeqIdentify significantly differential expression profiles in time-course microarray experimentsRegression 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.To updatehttps://www.bioconductor.org/packages/release/bioc/html/maSigPro.htmlTranscriptomics, RNA, Statisticsmasigproiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/masigpro
maxbin22.2.7maxbin2To updatemaxbinMaxBinSequence assemblyMetagenomics, Sequence assembly, Microbiologyclusters metagenomic contigs into binsSoftware for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm.To updatehttps://downloads.jbei.org/data/microbial_communities/MaxBin/MaxBin.htmlMetagenomicsmaxbin2mbernthttps://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/
mcl22.28222.282mclUp-to-datemclMCLClustering, Network analysis, Gene regulatory network analysisMolecular interactions, pathways and networksThe Markov Cluster Algorithm, a cluster algorithm for graphsMCL is a clustering algorithm widely used in bioinformatics and gaining traction in other fields.Up-to-datehttps://micans.org/mcl/man/mcl.htmlSequence Analysismcliuchttps://github.com/galaxyproject/tools-iuc/tree/master/mcl
medaka1.7.21.11.3medakaTo updatemedakaMedakaBase-calling, Variant calling, Sequence assemblySequence assembly, Machine learningSequence correction provided by ONT Researchmedaka 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.To updatehttps://github.com/nanoporetech/medakaSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/medaka
megahit1.2.91.2.9megahitUp-to-datemegahitMEGAHITGenome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyAn ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph.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.Up-to-datehttps://github.com/voutcn/megahitSequence Analysis, Assembly, Metagenomicsmegahitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit
megahit_contig2fastg1.1.31.2.9megahitTo updatemegahitMEGAHITGenome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyA subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg)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.To updatehttps://github.com/voutcn/megahit/blob/master/tools/toolkit.cppSequence Analysis, Assembly, Metagenomicsmegahit_contig2fastgiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg
megan6.21.76.25.9meganTo updatemeganMEGANSequence analysis, Taxonomic classificationSequence analysisMEGAN 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).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.To updatehttps://github.com/husonlab/megan-ceSequence Analysismeganiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megan
meme5.4.15.5.5memeTo updatememe_fimomeme_fimoSequence motif discovery, Nucleic acid feature detection, Protein feature detection, Statistical calculationSequence analysis, Genetic variation, Statistics and probability, Data miningThe 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.A software tool for scanning DNA or protein sequences with motifs described as position-specific scoring matrices.To updatehttp://meme-suite.org/ChIP-seqmemeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/meme
meme_chip4.11.21.3.26graphicsmagickTo updatePerforms 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_chip
meningotype0.8.50.8.5meningotypeUp-to-dateAssign sequence type to N. meningitidis genome assembliesUp-to-datehttps://github.com/MDU-PHL/meningotypeSequence Analysismeningotypeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype
merlin1.1.21.1.2merlinUp-to-datemerlinMerlinHaplotype mapping, Genetic mappingGWAS study, MappingPedigree Analysis packageCan 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 simulationUp-to-datehttp://csg.sph.umich.edu/abecasis/Merlin/Variant Analysismerliniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merlin/
merqury1.31.3merquryUp-to-datemerquryMerquryGenome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biologyMerqury is a tool for evaluating genomes assemblies based of k-mer operations.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.Up-to-datehttps://github.com/marbl/merquryAssemblymerquryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury
meryl1.31.3merquryUp-to-datemerylMerylk-mer countingWhole genome sequencing, Genomics, Sequence analysis, SequencingMeryl a k-mer counter.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.Up-to-datehttps://github.com/marbl/merylAssemblymeryliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl
metabat22.152.15metabat2Up-to-dateMetaBAT_2MetaBAT 2Read binning, Sequence assembly, Genome annotationMetagenomics, Sequence assembly, Metagenomic sequencingMetaBAT2 (Metagenome Binning based on Abundance and Tetranucleotide frequency) is an automated metagenome binningsoftware that integrates empirical probabilistic distances of genome abundance and tetranucleotide frequency.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 binningUp-to-datehttps://bitbucket.org/berkeleylab/metabat/src/master/Metagenomicsmetabat2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metabat2/
metaeuk5.34c21f26.a5d39d9metaeukTo updateMetaEukMetaEukHomology-based gene predictionMetagenomics, Gene and protein familiesMetaEuk 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 - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomicsTo updatehttps://github.com/soedinglab/metaeukSequence Analysis, Genome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeuk
metagenomeseq1.16.0-0.0.11.43.0bioconductor-metagenomeseqTo updatemetagenomeseqmetagenomeSeqSequence visualisation, Statistical calculationMetagenomics, SequencingmetagenomeSeq NormalizationDesigned 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.To updateMetagenomicsmetagenomeseq_normalizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metagenomeseq
metaphlan4.0.64.1.0metaphlanTo updatemetaphlanMetaPhlAnNucleic acid sequence analysis, Phylogenetic tree analysisMetagenomics, PhylogenomicsMetaPhlAn for Metagenomic Phylogenetic AnalysisComputational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data.To updatehttps://github.com/biobakery/MetaPhlAnMetagenomicsmetaphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan/
migmap1.0.31.0.3migmapUp-to-dateMiGMAPMiGMAPSequence analysis, Read mappingImmunoproteins, genes and antigens, Sequence analysismapper for full-length T- and B-cell repertoire sequencingMapper for full-length T- and B-cell repertoire sequencing.Up-to-datehttps://github.com/mikessh/migmapRNA, Sequence Analysismigmapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap
minia3.2.63.2.6miniaUp-to-dateminiaMiniaGenome assemblySequence assemblyShort-read assembler based on a de Bruijn graphShort-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day.Up-to-datehttps://gatb.inria.fr/software/minia/Assemblyminiaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/minia
miniasm0.3_r1790.3miniasmTo updateMiniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step)To updatehttps://github.com/lh3/miniasmAssemblyminiasmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm
minimap22.262.26minimap2Up-to-dateminimap2Minimap2Pairwise sequence alignmentMappingA fast pairwise aligner for genomic and spliced nucleotide sequencesPairwise aligner for genomic and spliced nucleotide sequencesUp-to-datehttps://github.com/lh3/minimap2Next Gen Mappersminimap2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/minimap2
miniprot0.120.12miniprotUp-to-dateAlign a protein sequence against a genome with affine gap penalty, splicing and frameshift.Up-to-datehttps://github.com/lh3/miniprotSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniprot
mirnature1.11.1mirnatureUp-to-dateComputational detection of canonical microRNAsUp-to-datehttps://github.com/Bierinformatik/miRNAtureRNA, Sequence Analysismirnatureiuchttps://github.com/Bierinformatik/miRNAture
mitobim1.9.11.9.1mitobimUp-to-dateassemble mitochondrial genomesUp-to-datehttps://github.com/chrishah/MITObimAssemblymitobimiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobim
mitos1.1.52.1.7mitosTo updatemitosMITOSGenome annotationZoology, Whole genome sequencingde-novo annotation of metazoan mitochondrial genomesDe novo metazoan mitochondrial genome annotation.To updatehttp://mitos.bioinf.uni-leipzig.de/Sequence Analysismitosiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos
mlst2.22.02.23.0mlstTo updatemlstMLSTTaxonomic classificationImmunoproteins, genes and antigensScan contig files against PubMLST typing schemesMulti Locus Sequence Typing from an assembled genome or from a set of reads.To updatehttps://github.com/tseemann/mlstSequence Analysismlstiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mlst
moabs1.3.4.61.3.9.0moabsTo updateMOABS for differential methylation analysis on Bisulfite sequencing data.To updatehttps://github.com/sunnyisgalaxy/moabsEpigeneticsmoabsiuchttps://github.com/sunnyisgalaxy/moabs
mosdepth0.3.60.3.6mosdepthUp-to-datefast and flexible BAM/CRAM depth calculationUp-to-datehttps://github.com/brentp/mosdepthSAMmosdepthiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mosdepth
mothur1.01.48.0mothurTo updatemothurmothurDNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysisMicrobial ecology, Taxonomy, Sequence analysis, PhylogenyMothur wrappersOpen-source, platform-independent, community-supported software for describing and comparing microbial communitiesTo updatehttps://www.mothur.orgMetagenomicsmothuriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur
msaboot0.1.20.1.2msabootUp-to-dateA multiple sequences alignment bootstrapping tool.Up-to-datehttps://github.com/phac-nml/msabootFasta Manipulationmsabootiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/msaboot
multigps0.74.0fonts-conda-ecosystemTo updateAnalyzes collections of multi-condition ChIP-seq data.To updatehttp://mahonylab.org/software/multigps/ChIP-seqmultigpsiuc
multigsea1.12.01.12.0bioconductor-multigseaUp-to-datemultiGSEAmultiGSEAGene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small moleculesGSEA-based pathway enrichment analysis for multi-omics dataA 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.Up-to-datehttps://bioconductor.org/packages/devel/bioc/html/multiGSEA.htmlTranscriptomics, Proteomics, Statisticsmultigseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea
multiqc1.111.21multiqcTo updatemultiqcMultiQCValidationSequencing, BioinformaticsMultiQC aggregates results from bioinformatics analyses across many samples into a single reportMultiQC 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.To updatehttp://multiqc.info/Fastq Manipulation, Statistics, Visualizationmultiqciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqc
mummer44.0.0rc14.0.0rc1mummer4Up-to-datemumer4MUMmer4Multiple sequence alignmentSequence analysis, Human geneticsMummer4 ToolsSystem for rapidly aligning large DNA sequences to one another.Up-to-datehttps://github.com/mummer4/mummerSequence Analysismummer4iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mummer4
mykrobe0.10.00.13.0mykrobeTo updateMykrobeMykrobeAntimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimmingWhole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, MetagenomicsAntibiotic resistance predictionsAntibiotic 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 installedTo updatehttps://github.com/Mykrobe-tools/mykrobeSequence Analysismykrobeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mykrobe
mzmine3.9.03.9.0mzmineUp-to-datemzmineMZmineNatural 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 moleculesmass-spectrometry data processing, with the main focus on LC-MS dataToolbox for visualization and analysis of LC-MS data in netCDF or mzXML.Up-to-datehttp://mzmine.github.io/Metabolomicsmzmine_batchiuchttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/mzmine/
naltorfs0.1.20.1.2naltorfsUp-to-datenAlt-ORFs: Nested Alternate Open Reading Frames (nAltORFs)Up-to-datehttps://github.com/BlankenbergLab/nAltORFsSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/naltorfs/
nanocompore1.0.0rc3.post21.0.4nanocomporeTo updateNanocomporeNanocomporePost-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 sitesNanocompore 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.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-vitroTo updatehttps://nanocompore.rna.rocks/Sequence Analysisnanocomporeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanocompore
nanoplot1.41.01.42.0nanoplotTo updatePlotting tool for long read sequencing data and alignmentsTo updatehttps://github.com/wdecoster/NanoPlotVisualizationnanoplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanoplot/
nanopolishcomp0.6.110.6.12nanopolishcompTo updateNanopolishComp 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.To updatehttps://a-slide.github.io/NanopolishCompSequence Analysisnanopolishcompiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanopolishcomp
ncbi_acc_download0.2.80.2.8ncbi-acc-downloadUp-to-dateDownload 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_download
ncbi_datasets15.19.1ncbi-datasets-cliTo updatencbi_datasetsNCBI DatasetsData handling, Sequence database search, Data retrievalBiological databasesNCBI datasets downloads biological sequence data across all domains of life from NCBI.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.To updatehttps://github.com/ncbi/datasetsData Sourcencbi_datasetsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_datasets
ncbi_entrez_direct16.216.2entrez-directUp-to-dateNCBI 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_direct
ncbi_entrez_eutils1.70pythonTo updateNCBI 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_eutils
ncbi_fcs_gx0.5.00.5.0ncbi-fcs-gxUp-to-dateFCS-GX detects contamination from foreign organisms in genome sequences using the genome cross-species aligner (GX).Up-to-datehttps://github.com/ncbi/fcs-gxSequence Analysisncbi_fcs_gxiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx
necat0.0.1_update202008030.0.1_update20200803necatUp-to-datenecatNECATDe-novo assemblySequence assemblyError correction and de-novo assembly for ONT Nanopore readsNECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads.Up-to-datehttps://github.com/xiaochuanle/NECATAssemblynecatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/necat
newick_utils1.6+galaxy11.6newick_utilsTo updatenewick_utilitiesNewick UtilitiesPhylogenetic tree generation, Phylogenetic tree analysis, Phylogenetic tree reconstructionPhylogeny, Genomics, Computer sciencePerform operations on Newick treesThe 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.To updatehttp://cegg.unige.ch/newick_utilsVisualization, Metagenomicsnewick_utilsiuchttps://github.com/tjunier/newick_utils
nextclade2.7.02.14.0nextalignTo updateIdentify differences between your sequences and a reference sequence used by NextstrainTo updatehttps://github.com/nextstrain/nextcladeSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nextclade
ngmlr0.2.70.2.7ngmlrUp-to-datengmlrNGMLRDNA mapping, Sequence alignment, Genetic variation analysisSequencing, Mapping, DNA structural variationCoNvex Gap-cost alignMents for Long ReadsAn 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.Up-to-datehttps://github.com/philres/ngmlrNext Gen Mappersngmlriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ngmlr
ngsutils0.5.9ngsutilsTo updatengsutilsNGSUtilsRead pre-processing, Sequencing quality control, Variant calling, Formatting, Sequence contamination filteringGenomics, TranscriptomicsNGSUtils 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 is a suite of software tools for working with next-generation sequencing datasetsTo updatehttps://github.com/ngsutils/ngsutilsSAMiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ngsutils
nonpareil3.1.13.4.1nonpareilTo updateEstimate average coverage in metagenomic datasetsTo updatehttp://nonpareil.readthedocs.ioMetagenomicsnonpareiliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nonpareil
novoplasty4.3.14.3.5novoplastyTo updateNOVOPlasty 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/novoplasty
nugen_nudup2.3.32.3.3nudupUp-to-dateMarks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products.Up-to-datehttp://nugentechnologies.github.io/nudup/SAM, Metagenomics, Sequence Analysis, Transcriptomicsnugen_nudupiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup
obitools1.2.131.2.13obitoolsUp-to-dateobitoolsOBIToolsSequence analysis, Sequence analysisSequence analysis, DNA, SequencingOBITools is a set of programs developed to simplify the manipulation of sequence filesSet 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.Up-to-datehttp://metabarcoding.org/obitoolsSequence Analysisobitoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools
ococo0.1.2.60.1.2.6ococoUp-to-dateVariant detection of SNVsUp-to-datehttps://github.com/karel-brinda/ococoVariant Analysisococoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ococo
odgi0.30.8.4odgiTo updateRepresenting 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/
omark0.3.0To updateProteome quality assessment softwareTo updatehttps://github.com/DessimozLab/OMArkSequence Analysisomarkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/omark/
ont_fast5_api3.1.34.1.3ont-fast5-apiTo updateont_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_api
onto_toolkit1.451.45perl-onto-perlUp-to-dateONTO-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-toolkit
optdoev2.0.2doebaseTo updateOptimal Design Of ExperimentTo updatehttps://github.com/pablocarb/doebaseSynthetic Biologyoptdoeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/optdoe
optitype1.3.51.3.5optitypeUp-to-datePrecision HLA typing from NGS dataUp-to-datehttps://github.com/FRED-2/OptiTypeSequence Analysisoptitypeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/optitype1
orfipy0.0.40.0.4orfipyUp-to-dateorfipyorfipyCoding region prediction, Database search, Transcriptome assembly, De-novo assemblyComputer science, RNA-Seq, Transcriptomics, Small moleculesGalaxy wrapper for ORFIPYA 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.Up-to-datehttps://github.com/urmi-21/orfipySequence Analysisorfipyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/orfipy
orthofinder2.5.52.5.5orthofinderUp-to-dateOrthoFinderOrthoFinderGenome comparison, Phylogenetic tree generation (from molecular sequences), Phylogenetic tree analysis, Genome alignmentPhylogenetics, Phylogenomics, Bioinformatics, Comparative genomics, Sequence analysisAccurate inference of orthologous gene groups made easyOrthoFinder 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.Up-to-datehttps://github.com/davidemms/OrthoFinderPhylogenetics, Sequence Analysisorthofinderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/orthofinder
packaged_annotation_loader0.1pythonTo updateTool to make cached genome annotation data available as a list of datasets collectionTo updateData Sourcepackaged_annotation_loaderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/packaged_annotation_loader
pangolin4.34.3pangolinUp-to-datePangolin assigns SARS-CoV-2 genome sequences their most likely lineages under the Pango nomenclature system.Up-to-datehttps://github.com/cov-lineages/pangolinSequence Analysispangoliniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pangolin
parse_mito_blast1.0.21.0.2parse_mito_blastUp-to-dateFiltering 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_blast
pathview1.34.01.42.0bioconductor-pathviewTo updatepathviewpathviewPathway or network analysis, Pathway or network visualisationMolecular interactions, pathways and networks, Systems biology, Data visualisationPathview is a tool set for pathway based data integration and visualization.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.To updatehttps://bioconductor.org/packages/release/bioc/html/pathview.htmlStatistics, RNA, Micro-array Analysispathviewiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pathview
pbgcpp2.0.22.0.2pbgcppUp-to-dategenomicconsensusGenomicConsensusVariant callingMappingCompute genomic consensus and call variants using PacBio reads mapped to a referenceThe 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.Up-to-datehttps://github.com/PacificBiosciences/gcppVariant Analysispbgcppiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pbgcpp
pbmm21.13.11.13.1pbmm2Up-to-datepbmm2pbmm2Pairwise sequence alignment, SortingMappingA minimap2 SMRT wrapper for PacBio data.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.Up-to-datehttps://github.com/PacificBiosciences/pbmm2Next Gen Mapperspbmm2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pbmm2
pe_histogram1.0.1openjdkTo updateContains 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_histogram
peakzilla1.0pythonTo updatePeakzilla 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/peakzilla
pear0.9.60.9.6pearUp-to-datepearPEARSequence mergingSequence assemblyPEAR evaluates all possible paired-end read overlapsPaired-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.Up-to-datepeariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pear
pharokka1.3.2\n pharokka\nTo update\n pharokka\nrapid standardised annotation tool for bacteriophage genomes and metagenomesTo updatehttps://github.com/gbouras13/pharokkaGenome annotationpharokkaiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka
phyloseq1.38.01.46.0bioconductor-phyloseqTo updatephyloseqphyloseqDeposition, Analysis, VisualisationMicrobiology, Sequence analysis, MetagenomicsHandling and analysis of high-throughput microbiome census dataProvides a set of classes and tools to facilitate the import, storage, analysis, and graphical display of microbiome census data.To updatehttps://www.bioconductor.org/packages/release/bioc/html/phyloseq.htmlMetagenomicsphyloseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/phyloseq
phyml3.3.202204083.3.20220408phymlUp-to-datephymlPhyMLPhylogenetic tree generation (maximum likelihood and Bayesian methods)Phylogenetics, Bioinformatics, PhylogeneticsPhyML is a phylogeny software based on the maximum-likelihood principle.Phylogenetic estimation software using Maximum LikelihoodUp-to-datehttp://www.atgc-montpellier.fr/phyml/Phylogeneticsphymliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml
picard3.1.13.1.1picardUp-to-datepicard_fastqtosampicard_fastqtosamFormattingSequencingPicard SAM/BAM manipulation tools.Create an unaligned BAM file.Up-to-datehttp://broadinstitute.github.io/picard/SAMpicarddevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/picard
pick_value0.2.0To updateCompose a text parameter value using text, integer and float valuesTo updateText Manipulationpick_valueiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pick_value
picrust1.1.11.1.4picrustTo updatepicrustPICRUStPhylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcodingMetagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencingPICRUSt wrappersPICRUSt (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.To updatehttps://picrust.github.io/picrust/Metagenomicspicrustiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/picrust
picrust22.5.12.5.2picrust2To updatepicrust2PICRUSt2Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysisMetagenomics, Microbiology, Phylogenetics, Metagenomic sequencingPICRUSt2: Phylogenetic Investigation of Communities by Reconstruction of Unobserved StatesPICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences.To updatehttps://github.com/picrust/picrust2/wikiMetagenomicspicrust2iuchttps://github.com/picrust/picrust2
pilon1.20.11.24pilonTo updatepilonpilonSequence assembly, Analysis, Read alignmentAssemblypilon is a tool for assembly improvement and variant analysis in bacteriaRead alignment analysis to diagnose, report, and automatically improve de novo genome assemblies.To updateVariant Analysispiloniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pilon
pipelign0.20.2pipelignUp-to-dateMultipe sequence alignmentUp-to-datehttps://github.com/asmmhossain/pipelign/Next Gen Mapperspipeligniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pipelign
pizzly0.37.3.10.37.3pizzlyTo updatePizzly 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/
plasflow1.1.01.1.0plasflowUp-to-datePlasFlow - Prediction of plasmid sequences in metagenomic contigs.Up-to-datehttps://github.com/smaegol/PlasFlowSequence Analysisplasflowiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow
plasmidfinder2.1.62.1.6plasmidfinderUp-to-datePlasmidFinderPlasmidFinderGenome assembly, Scaffolding, Multilocus sequence typingWhole genome sequencing, Sequence assembly, Mapping, Probes and primers"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 is a tool for the identification and typing of Plasmid Replicons in Whole-Genome Sequencing (WGS).Up-to-datehttps://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/Sequence Analysisplasmidfinderiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder
plink1.90b6.211.90b6.21plinkUp-to-dateplinkPLINKGenetic variation analysisGWAS studyPLINK is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner.Free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner.Up-to-datehttps://www.cog-genomics.org/plinkGenome-Wide Association Studyplinkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/plink
polypolish0.5.00.6.0polypolishTo updatePolypolishPolypolishGenome assembly, Read mapping, Mapping assembly, Sequencing error detectionSequence assembly, Sequence composition, complexity and repeats, Mapping"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 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.To updatehttps://github.com/rrwick/PolypolishSequence Analysispolypolishiuchttps://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish
porechop0.2.4porechopTo updatePorechop - Finding and removing adapters from Oxford Nanopore readsTo updatehttps://github.com/rrwick/PorechopFasta Manipulation, Fastq Manipulationporechopiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop
poretools0.6.1a10.6.1a1poretoolsUp-to-dateporetoolsPoretoolsNucleic acid sequence analysisDNA, SequencingA flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis.Flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis.Up-to-datehttps://poretools.readthedocs.io/en/latest/Fasta Manipulation, Fastq Manipulationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools
presto0.6.20.7.2prestoTo updateprestopRESTONucleic acid sequence analysisSequencing, DNA, ImmunologypRESTO toolkit for immune repertoire analysis.Integrated collection of platform-independent Python modules for processing raw reads from high-throughput (next-generation) sequencing of lymphocyte repertoires.To updatehttps://presto.readthedocs.io/Sequence Analysisprestoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/presto
pretext0.0.60.0.6pretextgraphUp-to-dateProcess genome contacts maps processing images.Up-to-datehttps://github.com/wtsi-hpag/PretextSnapshotSequence Analysissuite_pretextiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pretext
prinseq@TOOL_VERSION+galaxy20.20.4prinseqTo updateprinseqPRINSEQRead pre-processing, Sequence trimming, Sequence contamination filteringTranscriptomics, Metagenomics, GenomicsPRINSEQ is a tool for easy and rapid quality control and data processing of metagenomic and metatranscriptomic datasetsPRINSEQ 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.To updatehttp://prinseq.sourceforge.net/manual.htmlFastq Manipulation, Metagenomicsprinseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/prinseq/
progressivemauvesnapshot_2015_02_13progressivemauveTo updateMauve/ProgressiveMauve Multiple Sequence AlignerTo updateSequence Analysisprogressivemauveiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/progressivemauve
prokka1.14.61.14.6prokkaUp-to-dateprokkaProkkaGene prediction, Coding region prediction, Genome annotationGenomics, Model organisms, VirologyRapid annotation of prokaryotic genomesSoftware tool to annotate bacterial, archaeal and viral genomes quickly and produce standards-compliant output files.Up-to-datehttp://github.com/tseemann/prokkaSequence Analysisprokkacrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/prokka/
prot-scriber0.1.40.1.5prot-scriberTo updateProtein annotation of short human readable descriptionsTo updatehttps://github.com/usadellab/prot-scriberProteomicsprot_scriberiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/prot-scriber
proteinortho6.3.16.3.1proteinorthoUp-to-dateproteinorthoProteinorthoHomology-based gene predictionPhylogenyProteinortho is a tool to detect orthologous proteins/genes within different species.Proteinortho is a tool to detect orthologous genes within different speciesUp-to-datehttps://gitlab.com/paulklemm_PHD/proteinorthoProteomicsproteinorthoiuchttps://gitlab.com/paulklemm_PHD/proteinortho
psiclass1.0.31.0.3psiclassUp-to-datepsiclassPsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples.Up-to-datehttps://github.com/splicebox/PsiCLASSTranscriptomicspsiclassiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclass
pureclip1.0.41.3.1pureclipTo updatePureCLIP 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/pureclip
purge_dups1.2.61.2.6purge_dupsUp-to-datepurge_dupspurge_dupsGenome assembly, Read binning, ScaffoldingSequence assemblyPurge haplotigs and overlaps in an assembly based on read depthIdentifying 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 seqeuencesUp-to-datehttps://github.com/dfguan/purge_dupsAssemblypurge_dupsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dups
pycoqc2.5.22.5.2pycoqcUp-to-dateQC metrics for ONT BasecallingUp-to-datehttps://github.com/tleonardi/pycoQCNanoporepycoqciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqc
pyega35.0.25.1.0pyega3To updateEGA 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/pyega3
pygenometracks3.83.8pygenometracksUp-to-datepyGenomeTracks: Standalone program and library to plot beautiful genome browser tracks.Up-to-datehttps://github.com/deeptools/pyGenomeTracksVisualizationpygenometracksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pygenometracks
pysradb1.4.22.2.0pysradbTo updatepysradbpysradbDeposition, Data retrievalSequencing, Gene transcripts, Bioinformaticspysradb allows to retrieve metadata, such as run accession numbers, from SRA and ENA based on multiple criteria.Python package to query next-generation sequencing metadata and data from NCBI Sequence Read Archive.To updatehttps://github.com/saketkc/pysradbSequence Analysispysradb_searchiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pysradb
qfilt1.0.0+galaxy10.0.1qfiltTo updateFilter sequencing dataTo updatehttps://github.com/veg/qfiltFastq Manipulationqfiltiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qfilt
qiime_add_on1.9.1qiimeTo updateQIIME to perform microbial community analysisTo updatehttp://www.qiime.orgMetagenomicsqiimeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/
qiime_core1.9.1qiimeTo updateQIIME to perform microbial community analysisTo updatehttp://www.qiime.orgMetagenomicsqiimeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/
qq_tools0.1.00.1.4r-qqmanTo updateTo updatehttps://CRAN.R-project.org/package=qqmanVisualization, Variant Analysisiuc
qualimap2.2.2d2.3qualimapTo updatequalimapQualiMapSequencing quality controlData quality managementPlatform-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.To updatehttp://qualimap.bioinfo.cipf.es/Sequence Analysis, Transcriptomics, SAMqualimapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap
quast5.2.05.2.0quastUp-to-datequastQUASTVisualisation, Sequence assembly validationSequence assemblyQuast (Quality ASsessment Tool) evaluates genome assemblies.QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports.Up-to-datehttp://quast.bioinf.spbau.ru/Assemblyquastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quast
query_impc0.9.0requestsTo updateContains 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_impc
query_tabular3.3.0pythonTo updateLoads tabular files into a SQLite DB to perform a SQL query producing a tabular outputTo updateText Manipulationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabular
quickmerge0.30.3quickmergeUp-to-datequickmergequickmergeGenome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotypeMerge long-read and hybrid assemblies to increase contiguityQuickmerge 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.Up-to-datehttps://github.com/mahulchak/quickmergeAssemblyquickmergegalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge
raceid0.2.30.1.3r-raceidTo updateRaceID3, StemID2, FateID - scRNA analysisTo updatehttps://github.com/dgrun/RaceID3_StemID2_package/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3
ragtag2.1.02.1.0ragtagUp-to-dateragtagragtagGenome assemblySequence assemblyReference-guided scaffolding of draft genomes tool.RagTag is a collection of software tools for scaffolding and improving modern genome assemblies.Up-to-datehttps://github.com/malonge/RagTagAssemblyragtagiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtag
rapidnj2.3.22.3.2rapidnjUp-to-daterapidnjRapidNJPhylogenetic tree generationPhylogenyGalaxy wrapper for the RapidNJ toolA tool for fast canonical neighbor-joining tree construction.Up-to-datehttps://birc.au.dk/software/rapidnj/Phylogeneticsrapidnjiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rapidnj
rasusa0.8.00.8.0rasusaUp-to-daterasusarasusaRandomly subsample sequencing reads to a specified coverageProduces an unbiased subsample of your readsUp-to-datehttps://github.com/mbhall88/rasusaSequence Analysisrasusaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rasusa
raven1.8.01.8.3raven-assemblerTo updateRaven is a de novo genome assembler for long uncorrected reads.To updatehttps://github.com/lbcb-sci/ravenAssemblyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/raven
raxml8.2.128.2.13raxmlTo updateraxmlRAxMLSequence analysis, Phylogenetic tree analysisPhylogenetics, Sequence analysisRAxML - A Maximum Likelihood based phylogenetic inferenceA tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies.To updatehttp://www.exelixis-lab.org/web/software/raxml/Phylogeneticsraxmliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/raxml
rcorrector1.0.3+galaxy11.0.6rcorrectorTo updatercorrectorRcorrectorSequencing error detectionRNA, RNA-Seq, SequencingRcorrector (RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data.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.To updatehttps://github.com/mourisl/RcorrectorFastq Manipulationrcorrectoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rcorrector
read_it_and_keep0.2.20.3.0read-it-and-keepTo updateRapid decontamination of SARS-CoV-2 sequencing readsTo updatehttps://github.com/GenomePathogenAnalysisService/read-it-and-keepSequence Analysisread_it_and_keepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/read-it-and-keep
recentrifuge1.14.01.14.0recentrifugeUp-to-dateRecentrifugeRecentrifugeTaxonomic classification, Expression analysis, Cross-assemblyMetagenomics, Microbial ecology, Metagenomic sequencing"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."Robust comparative analysis and contamination removal for metagenomics.Up-to-datehttps://github.com/khyox/recentrifugeMetagenomicsrecentrifugeiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/recentrifuge
red2018.09.102018.09.10redUp-to-dateRed (REpeat Detector)Up-to-datehttps://github.com/BioinformaticsToolsmith/RedSequence Analysisrediuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/red
repeatmasker4.1.54.1.5repeatmaskerUp-to-daterepeatmaskerRepeatMaskerGenome annotationSequence analysis, Sequence composition, complexity and repeatsRepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences.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).Up-to-datehttp://www.repeatmasker.org/Sequence Analysisrepeat_maskerbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmasker
repeatmodeler2.0.5To updateRepeatModeler - Model repetitive DNATo updatehttps://www.repeatmasker.org/RepeatModeler/Genome annotationrepeatmodelercsblhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmodeler
repmatch_gff3matplotlibTo updateContains 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_gff3
reshape21.4.2r-reshape2To updateFlexibly 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/reshape2
resize_coordinate_window1.0.2pythonTo updateContains 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_window
rgcca3.0.23.0.3rgccacmdTo updatemulti-block analysisTo updatehttps://github.com/rgcca-factory/RGCCAStatisticsrgccaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rgcca
rgrnastar2.7.11a2.7.11bstarTo updatestarSTARSequence alignmentRNA-Seq, TranscriptomicsRNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapperUltrafast universal RNA-seq data alignerTo updatehttps://github.com/alexdobin/STARNext Gen Mappers, Transcriptomicsrgrnastariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar
ribowaltz1.2.02.0ribowaltzTo updateriboWaltzriboWaltzComputational biologyCalculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling datariboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data.To updatehttps://github.com/LabTranslationalArchitectomics/riboWaltzTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltz
rnaquast2.2.32.2.3rnaquastUp-to-daternaQUASTrnaQUASTDe-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics, RNA-seqrnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies.Quality assessment tool for de novo transcriptome assemblies.Up-to-datehttps://github.com/ablab/rnaquastAssembly, RNArnaquastiuchttps://git.ufz.de/lehmanju/rnaquast
roary3.13.03.13.0roaryUp-to-dateroaryRoaryGenome assemblyDNA, Genomics, MappingRoary the pangenome pipelineA high speed stand alone pan genome pipeline, which takes annotated assemblies in GFF3 format (produced by Prokka (Seemann, 2014)) and calculates the pan genome.Up-to-datehttps://sanger-pathogens.github.io/Roary/Sequence Analysisroaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/roary
rp2biosensor3.2.1rp2biosensorTo updateBuild Sensing-Enabling Metabolic Pathways from RetroPath2.0 outputTo updatehttps://github.com/brsynth/rp2biosensorSynthetic Biologyrp2biosensoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2biosensor
rp2paths1.5.1rp2pathsTo updateEnumerate and seperate the different pathways generated by RetroPath2.0To updatehttps://github.com/brsynth/rp2pathsSynthetic Biologyrp2pathsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths
rpbasicdesign1.2.2rpbasicdesignTo updateExtracting enzyme IDs from rpSBML filesTo updatehttps://github.com/brsynth/rpbasicdesignSynthetic Biologyrpbasicdesigniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rpbasicdesign
rpfba5.12.3rptoolsTo updatePerform FBA for the RetroPath2.0 heterologous pathwaysTo updatehttps://github.com/brsynth/rptools/releasesSynthetic Biologyrpfbaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rpfba
rptools5.13.1rptoolsTo updateSuite of tools that work on rpSBML formatTo updatehttps://github.com/brsynth/rptoolsSynthetic Biologyrptoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rptools
rrparser2.5.2rrparserTo updateReaction Rules ParserTo updatehttps://github.com/brsynth/RRParserSynthetic Biologyrrparseriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser
rseqc5.0.15.0.3rseqcTo updaterseqcRSeQCData handlingSequencingan RNA-seq quality control packageProvides 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.To updatehttps://code.google.com/p/rseqc/Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualizationrseqcnileshhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc
ruvseq1.26.01.36.0bioconductor-ruvseqTo updateruvseqRUVSeqDifferential gene expression analysisGene expression, RNA-seqRemove Unwanted Variation from RNA-Seq DataThis package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples.To updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsruvseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseq
salsa22.32.3salsa2Up-to-dateSALSASALSAGenome assembly, De-novo assembly, ScaffoldingSequence assembly, DNA binding sites, MappingA tool to scaffold long read assemblies with Hi-C> 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 branchUp-to-datehttps://github.com/marbl/SALSAAssemblysalsaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2
samblaster0.1.240.1.26samblasterTo updatesamblasterSAMBLASTERSplit read mappingDNA, Sequencing, Mappingsamblaster marks duplicates and can output split and discordant alignments from SAM/BAM filesA tool to mark duplicates and extract discordant and split reads from SAM files.To updatehttps://github.com/GregoryFaust/samblasterSAM, Fastq Manipulation, Variant Analysissamblasteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/samblaster
sansa0.0.80.1.1sansaTo updateSansa is a tool for structural variant annotation.To updatehttps://github.com/dellytools/sansaVariant Analysissansaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sansa
sarscov2formatter1.01.0sarscov2formatterUp-to-datesarscov2formatter custom scriptUp-to-datehttps://github.com/nickeener/sarscov2formatterSequence Analysissarscov2formatteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2formatter
sarscov2summary0.10.5sarscov2summaryTo updatesarscov2summary custom scriptTo updatehttps://github.com/nickeener/sarscov2summarySequence Analysissarscov2summaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2summary
sbml2sbol0.1.13sbml2sbolTo updateConvert SBML to SBOL formatTo updatehttps://github.com/neilswainston/SbmlToSbolSynthetic Biologysbml2sboliuc
scanpy1.9.61.7.2scanpyTo updatescanpySCANPYDifferential gene expression analysisGene expression, Cell biology, GeneticsScanpy – Single-Cell Analysis in PythonScalable 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.To updatehttps://scanpy.readthedocs.ioTranscriptomics, Sequence Analysisscanpyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/
scater1.22.01.30.1bioconductor-scaterTo updatescaterscaterRead pre-processing, Sequencing quality control, Sequence visualisationRNA-seq, Quality affairs, Molecular geneticsScater (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.Pre-processing, quality control, normalization and visualization of single-cell RNA-seq data.To updatehttp://bioconductor.org/packages/scater/Transcriptomics, RNA, Visualizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scater
sceasy0.0.70.0.7r-sceasyUp-to-dateConverter between difference single-cell formatsUp-to-datehttps://github.com/cellgeni/sceasy/Transcriptomicssceasy_convertiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/
schicexplorer47schicexplorerTo updatescHiCExplorer: 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/schicexplorer
scikit-bio0.4.20.4.2scikit-bioUp-to-datescikit-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_bio
scoary1.6.161.6.16scoaryUp-to-dateScoary calculates the assocations between all genes in the accessory genome and the traits.Up-to-datehttps://github.com/AdmiralenOla/ScoaryMetagenomicsscoaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scoary
scpipe1.0.0+galaxy22.2.0bioconductor-scpipeTo updatescpipescPipeGenome annotation, Validation, Alignment, VisualisationGene expression, RNA-seq, SequencingA flexible preprocessing pipeline for single-cell RNA-sequencing dataA 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.To updatehttp://bioconductor.org/packages/release/bioc/html/scPipe.htmlTranscriptomics, RNA, Statisticsscpipeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipe
seacr1.31.3seacrUp-to-dateSEACR 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/seacr
selenzy_wrapper0.3.00.3.0selenzy_wrapperUp-to-datePerforms 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_wrapper
semibin2.0.22.0.2semibinUp-to-datesemibinSemiBinSequence assembly, Read binningMetagenomics, Machine learning, Microbial ecology, Sequence assemblySemiBin: Semi-supervised Metagenomic Binning Using Siamese Neural NetworksCommand tool for metagenomic binning with semi-supervised deep learning using information from reference genomes.Up-to-datehttps://semibin.readthedocs.io/en/latest/Metagenomicssemibiniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/semibin
seq2hla2.32.3seq2hlaUp-to-dateseq2hlaSeq2HLARead mapping, Genetic variation analysisTranscriptomics, MappingPrecision HLA typing and expression from RNAseq dataseq2HLA 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.Up-to-datehttps://github.com/TRON-Bioinformatics/seq2HLASequence Analysisseq2hlaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla
seqcomplexity0.1.20.1.2seqcomplexityUp-to-dateSequence complexity for raw readsUp-to-datehttps://github.com/stevenweaver/seqcomplexitySequence Analysisiuchttps://github.com/stephenshank/tools-iuc/tree/seqcomplexity/tools/seqcomplexity/
seqkit2.3.12.7.0seqkitTo updateseqkitseqkitDNA transcription, Sequence trimming, DNA translation, Sequence conversionDatabase management, Sequence analysisA cross-platform and ultrafast toolkit for FASTA/Q file manipulationFASTA 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.To updatehttps://bioinf.shenwei.me/seqkit/Sequence Analysisseqkitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit
seqprep1.3.21.3.2seqprepUp-to-dateseqprepSeqPrepNucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primersTool for merging paired-end Illumina reads and trimming adapters.Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads.Up-to-datehttps://github.com/jstjohn/SeqPrepFastq Manipulation, Sequence Analysisseqprepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprep
seqsero21.2.11.2.1seqsero2Up-to-dateSalmonella serotype prediction from genome sequencing dataUp-to-datehttps://github.com/denglab/SeqSero2Sequence Analysisseqsero2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqsero2
seqtk1.41.4seqtkUp-to-dateseqtkseqtkData handling, Sequence file editingData managementToolkit for processing sequences in FASTA/Q formatsA 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.Up-to-datehttps://github.com/lh3/seqtkSequence Analysisseqtkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk
seqwish0.7.50.7.9seqwishTo updateAlignment to variation graph inducerTo updatehttps://github.com/ekg/seqwishSequence Analysis, Variant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqwish/
seurat4.3.0.13.0.2r-seuratTo updateA 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/seurat
shasta0.6.00.11.1shastaTo updateFast de novo assembly of long read sequencing dataTo updatehttps://github.com/chanzuckerberg/shastaAssembly, Nanoporeshastaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta
shorah1.1.31.99.2shorahTo updateshorahShoRAHHaplotype mapping, Variant callingMetagenomics, Sequencing, GeneticsReconstruct haplotypes using ShoRAH in amplicon modeInference 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.To updatehttps://github.com/cbg-ethz/shorah/blob/master/README.mdSequence Analysisshorah_ampliconiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shorah
shovill1.1.01.1.0shovillUp-to-dateshovillshovillGenome assemblyGenomics, Microbiology, Sequence assemblyFaster de novo assembly pipeline based around SpadesShovill 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.Up-to-datehttps://github.com/tseemann/shovillAssemblyshovilliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill
sickle1.33.21.33sickle-trimTo updatesicklesickleSequence trimmingData quality managementA windowed adaptive trimming tool for FASTQ files using qualityA 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.To updatehttps://github.com/najoshi/sickleFastq Manipulation, Sequence Analysissickleiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle
simtext0.0.21.0.1r-argparseTo updateA 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/simtext
sina1.7.21.7.2sinaUp-to-datesinaSINASequence alignment analysis, Multiple sequence alignment, Taxonomic classification, Structure-based sequence alignmentSequencing, RNA, Nucleic acid structure analysis, Taxonomy, Sequence analysis, TaxonomySINA reference based multiple sequence alignmentAligns and optionally taxonomically classifies your rRNA gene sequences.Reference based multiple sequence alignmentUp-to-datehttps://sina.readthedocs.io/en/latest/Sequence Analysissinaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sina
sinto0.9.00.10.0sintoTo updateSinto single-cell analysis toolsTo updatehttps://github.com/timoast/sintoSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sinto
slamdunk0.4.30.4.3slamdunkUp-to-dateSlamdunk 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/slamdunk
sleuth0.30.10.30.1r-sleuthUp-to-datesleuthsleuthExpression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculationRNA-seq, Gene expression, Statistics and probabilitySleuth is a program for differential analysis of RNA-Seq data.A statistical model and software application for RNA-seq differential expression analysis.Up-to-datehttps://github.com/pachterlab/sleuthTranscriptomics, RNA, Statisticssleuthiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuth
smallgenomeutilities0.4.00.4.0smallgenomeutilitiesUp-to-datev-pipeV-pipeRead pre-processing, Sequence alignment, Genetic variation analysisGenomics, Population genetics, Workflows, Virology, SequencingSet of utilities for manipulating small viral genome data.Bioinformatics pipeline for the analysis of next-generation sequencing data derived from intra-host viral populations.Up-to-datehttps://github.com/cbg-ethz/smallgenomeutilitiesSequence Analysissmallgenomeutilitiesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/smallgenomeutilities
smudgeplot0.2.50.2.5smudgeplotUp-to-datesmudgeplotsSmudgeplotsSequence trimming, Genotyping, k-mer countingSequence assembly, Genetic variation, MathematicsInference of ploidy and heterozygosity structure using whole genome sequencingReference-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/747568Up-to-datehttps://github.com/KamilSJaron/smudgeplotAssemblysmudgeplotgalaxy-australiahttps://github.com/galaxyproject/tools-iuc
snap2013_11_292013_11_29snapUp-to-datesnapSNAPGene predictionDNA, DNA polymorphism, GeneticsSNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes.The Semi-HMM-based Nucleic Acid Parser is a gene prediction tool.Up-to-datehttps://github.com/KorfLab/SNAPSequence Analysissnapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snap
sniffles1.0.122.2snifflesTo updatesnifflesSnifflesSequence analysis, Structural variation detectionDNA structural variation, SequencingGalaxy wrapper for snifflesAn algorithm for structural variation detection from third generation sequencing alignment.To updatehttps://github.com/fritzsedlazeck/SnifflesSequence Analysissnifflesiuchttps://github.com/galaxyproject/tools-iuc
snipit1.21.2snipitUp-to-datesnipitsnipitBase position variability plottingVirologySummarise snps relative to a reference sequenceSummarise snps relative to a reference sequenceUp-to-datehttps://github.com/aineniamh/snipitVariant Analysis, Sequence Analysissnipitiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snipit
snippy4.6.0snippyTo updatesnippysnippyPhylogenetic tree visualisation, Phylogenetic tree generation, Variant callingGenomics, Model organisms, DNA polymorphism, PhylogeneticsContains the snippy tool for characterising microbial snpsRapid haploid variant calling and core SNP phylogeny generation.To updatehttps://github.com/tseemann/snippySequence Analysissnippyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snippy
snp-dists0.8.20.8.2snp-distsUp-to-dateCompute 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-dists
snp-sites2.5.12.5.1snp-sitesUp-to-dateFinds 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-sites
snpeff-covid19To updatesnpeffsnpEffSNP detectionDNA polymorphism, Genetic variation, Nucleic acid sites, features and motifsSnpEff, the COVID-19 version, is a genetic variant annotation and effect prediction toolboxVariant annotation and effect prediction tool. It annotates and predicts the effects of variants on genes and proteins (such as amino acid changes).To updatehttp://snpeff.sourceforge.net/Genome-Wide Association Study, Variant Analysissnpeff_sars_cov_2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
snpfreqplot1.0r-baseTo updateGenerates a heatmap of allele frequencies grouped by variant type for SARS-CoV-2 dataTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snpfreqplot/Variant Analysissnpfreqplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snpfreqplot/
socru2.1.72.2.4socruTo updateOrder and orientation of complete bacterial genomesTo updatehttps://github.com/quadram-institute-bioscience/socruSequence Analysissocruiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/socru
sonneityping2021020120210201sonneitypingUp-to-dateScripts for parsing Mykrobe predict results for Shigella sonnei.Up-to-datehttps://github.com/katholt/sonneitypingSequence Analysissonneitypingiuchttps://github.com/katholt/sonneityping
spades3.15.53.15.5spadesUp-to-datebiosyntheticspadesbiosyntheticSPAdesSequence assemblySequence assembly, Sequence sites, features and motifs, Genetic engineeringSPAdes 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.biosyntheticSPAdes - biosynthetic gene cluster assembly with paired-end readsUp-to-datehttps://github.com/ablab/spadesAssembly, RNA, Metagenomicsspadesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/spades
spaln2.4.9pythonTo updateSpaln (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/spaln
spotyping2.12.1spotypingUp-to-datespotypingSpoTypingVariant pattern analysisMicrobiology, Sequencing, Sequence composition, complexity and repeats, Genetic variationSpoTyping allows fast and accurate in silico Mycobacterium spoligotyping from sequence readsFast and accurate in silico Mycobacterium spoligotyping from sequence reads.Up-to-datehttps://github.com/xiaeryu/SpoTyping-v2.0Sequence Analysisspotypingiuchttps://github.com/xiaeryu/SpoTyping-v2.0/tree/master/SpoTyping-v2.0-commandLine
spyboat0.1.2spyboatTo updateWavelet analysis for 3d-image stacksTo updatehttp://github.com/tensionhead/spyboatImaging, Graphicsspyboatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/packages/spyboat
sra-tools3.0.83.0.10sra-toolsTo updatesra-toolsSRA Software ToolkitData handlingDNA, Genomics, SequencingNCBI Sequence Read Archive toolkit utilitiesThe SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives.To updatehttps://github.com/ncbi/sra-toolsData Source, Fastq Manipulationsra_toolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sra-tools
srst20.2.01.19.2samtoolsTo updateSRST2 Short Read Sequence Typing for Bacterial PathogensTo updatehttp://katholt.github.io/srst2/Metagenomicssrst2iuchttps://github.com/katholt/srst2
stacks2.65stacksTo updatestacksStacksData handlingMapping, Population geneticsStacks is a software pipeline for building loci from short-read sequences, such as RAD-seqDeveloped to work with restriction enzyme based sequence data, such as RADseq, for building genetic maps and conducting population genomics and phylogeography analysis.To updatehttp://catchenlab.life.illinois.edu/stacks/Sequence Analysisstacksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks
stacks22.552.65stacksTo updateStacks 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/stacks2
star_fusion0.5.4-3+galaxy11.12.0star-fusionTo updateSTAR 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_fusion
straindesign3.2.23.2.2straindesignUp-to-dateToolbox to optimize biological modelUp-to-datehttps://github.com/brsynth/straindesignSystems Biology, Synthetic Biologystraindesigniuchttps://github.com/brsynth/straindesign
strelka2.9.102.9.10strelkaUp-to-dateUp-to-datehttps://github.com/Illumina/strelka/Variant Analysisstrelkaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/strelka
stringtie2.2.12.2.1stringtieUp-to-datestringtieStringTieTranscriptome assembly, RNA-Seq analysisTranscriptomics, RNA-seqStringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts.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.Up-to-datehttp://ccb.jhu.edu/software/stringtie/Transcriptomicsstringtieiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie
structure2.3.42.3.4structureUp-to-datestructureStructureGenetic variation analysisPopulation geneticsfor using multi-locus genotype data to investigate population 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.Up-to-datePhylogenetics, Variant Analysisstructureiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/structure
structureharvester0.6.940.6.94structureharvesterUp-to-datefor parsing STRUCTURE outputs and for performing the Evanno methodUp-to-datePhylogenetics, Variant Analysisstructureharvesteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/structureharvester
swift1.01.0swiftlinkUp-to-dateParallel MCMC Linkage AnalysisUp-to-datehttps://github.com/ajm/swiftlinkVariant Analysisswiftlinkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/swiftlink/
syndiva1.0clustaloTo updateSynDivA was developed to analyze the diversity of synthetic libraries of a Fibronectin domain.To updateProteomicssyndivaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/SynDivA
table_compute1.2.4pandasTo updatePerform general-purpose table operationsTo updateText Manipulationtable_computeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/table_compute
tag_pileup_frequency1.0.2openjdkTo updateContains 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_frequency
tasmanian_mismatch1.0.71.0.7tasmanian-mismatchUp-to-dateAnalysis of positional mismatchesUp-to-dateSequence Analysistasmanian_mismatchiuchttps://github.com/nebiolabs/tasmanian-mismatch
taxonomy_filter_refseq0.3.01.0.7rust-ncbitaxonomyTo updateFilter RefSeq by taxonomyTo updatehttps://github.com/pvanheus/ncbitaxonomySequence Analysis, Genome annotationtaxonomy_filter_refseqiuchttps://github.com/galaxyproject/tools-iuc
taxonomy_krona_chart2.7.1+galaxy02.8.1kronaTo updatekronaKronaVisualisationMetagenomicsKrona pie chart from taxonomic profileKrona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome).To updatehttp://sourceforge.net/projects/krona/Assemblytaxonomy_krona_chartcrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart
tb-profiler4.4.15.0.1tb-profilerTo updateProcesses M. tuberculosis sequence data to infer strain type and identify known drug resistance markers.To updatehttps://github.com/jodyphelan/TBProfilerSequence Analysistbprofileriuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/tb-profiler
tb_variant_filter0.4.00.4.0tb_variant_filterUp-to-dateM. tuberculosis H37Rv VCF filterUp-to-datehttps://github.com/COMBAT-TB/tb_variant_filterVariant Analysistb_variant_filteriuchttps://github.com/COMBAT-TB/tb_variant_filter
tbl2gff31.20.6.6bcbiogffTo updateTable to GFF3To updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3Convert Formats, Sequence Analysistbl2gff3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3
tbvcfreport0.1.100.1.10tbvcfreportUp-to-dateGenerate 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/tbvcfreport
te_finder1.0.11.19.2samtoolsTo updatetefinderTEfinderGenome indexing, Variant calling, PCR primer designSequencing, Mobile genetic elements, Workflows, Evolutionary biology, Genetic variationTransposable element insertions finderA 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.To updatehttps://github.com/VistaSohrab/TEfinderSequence Analysiste_finderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/te_finder/
telescope1.0.31.0.3telescopeUp-to-dateTelescope-expressionTelescopeEssential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mappingRNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assemblySingle locus resolution of Transposable ELEment expression.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.Up-to-datehttps://github.com/mlbendall/telescope/Genome annotationtelescope_assigniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/telescope
tetoolkit2.2.32.2.3tetranscriptsUp-to-dateThe 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/TEtranscripts
tetyper1.11.1tetyperUp-to-dateType 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/tetyper
tn931.0.61.0.13tn93To updateCompute distances between sequencesTo updatehttps://github.com/veg/tn93/Sequence Analysistn93iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tn93/
tracy0.6.10.7.6tracyTo updateTo updateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy
transdecoder5.5.05.7.1transdecoderTo updateTransDecoderTransDecoderCoding region prediction, de Novo sequencing, De-novo assemblyGenomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencingTransDecoder finds coding regions within transcriptsTransDecoder 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.To updatehttps://transdecoder.github.io/Transcriptomics, RNAtransdecoderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoder
transit3.0.23.2.3transitTo updatetransitTRANSITTransposon predictionDNA, Sequencing, Mobile genetic elementsTRANSITA 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.To updatehttps://github.com/mad-lab/transit/Genome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/
transtermhp2.09transtermhpTo updateFinds rho-independent transcription terminators in bacterial genomesTo updateSequence Analysistranstermhpiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transtermhp
trimmomatic0.390.39trimmomaticUp-to-dateA 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/trimmomatic
trinity2.15.12.15.1trinityUp-to-datetrinityTrinityTranscriptome assemblyTranscriptomics, Gene expression, Gene transcriptsTrinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseqTrinity 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.Up-to-datehttps://github.com/trinityrnaseq/trinityrnaseqTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity
trinotate3.2.24.0.2trinotateTo updatetrinotateTrinotateGene functional annotationGene expression, TranscriptomicsTrinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes.Comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms.To updatehttps://trinotate.github.io/Transcriptomics, RNAtrinotateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotate
trycycler0.5.40.5.4trycyclerUp-to-dateTrycycler toolkit wrappersUp-to-datehttps://github.com/rrwick/TrycyclerAssemblytrycycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler
tsebra1.1.2.31.1.2.3tsebraUp-to-dateThis tool has been developed to combine BRAKER predictions.Up-to-datehttps://github.com/Gaius-Augustus/TSEBRAGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tsebra
tsne0.0.20.13r-rtsneTo updateT-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/tsne
tximport1.22.01.30.0bioconductor-tximportTo updatetximporttximportPathway or network analysis, Formatting, RNA-Seq analysisTranscriptomics, Gene transcripts, WorkflowsWrapper for the Bioconductor package tximportAn 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.To updatehttp://bioconductor.org/packages/tximport/Transcriptomicstximportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tximport
ucsc_blat377445ucsc-blatTo updateblatBLATSequence alignmentSequence analysisStandalone blat sequence search command line toolFast, accurate spliced alignment of DNA sequences.To updatehttp://genome.ucsc.edu/goldenPath/help/blatSpec.htmlSequence Analysisucsc_blatyating-l
fasplit377377ucsc-fasplitUp-to-dateUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesSequence analysisfaSplit is a tool to split a single FASTA file into several filesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Up-to-datehttp://hgdownload.cse.ucsc.edu/admin/exe/Fasta Manipulationucsc_fasplitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fasplit
fatovcf448448ucsc-fatovcfUp-to-dateUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesSequence analysisConvert a FASTA alignment file to Variant Call Format (VCF) single-nucleotide diffsUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Up-to-datehttp://hgdownload.cse.ucsc.edu/admin/exe/Convert Formatsucsc_fatovcfiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fatovcf
twobittofa377455ucsc-twobittofaTo updateUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesSequence analysistwoBitToFa is a tool to convert all or part of .2bit file to FASTAUtilities for handling sequences and assemblies from the UCSC Genome Browser project.To updatehttps://genome.ucsc.edu/goldenpath/help/twoBit.htmlConvert Formatsucsc_twobittofaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/twobittofa
wigtobigwig447447ucsc-wigtobigwigUp-to-dateUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesSequence analysisconverts bedGraph (wig) files into binary bigwigUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Up-to-datehttps://genome.ucsc.edu/goldenPath/help/bigWig.htmlConvert Formatsucsc_wigtobigwigiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/wigtobigwig
umi_tools1.1.21.1.5umi_toolsTo updateumi-toolsUMI-toolsSequencing quality controlNGS, Sequence sites, features and motifs, Quality affairsUMI-tools extract - Extract UMIs from fastqTools for handling Unique Molecular Identifiers in NGS data sets.To updatehttps://github.com/CGATOxford/UMI-toolsSequence Analysis, Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools
unicycler0.5.00.5.0unicyclerUp-to-dateunicyclerUnicyclerGenome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assemblyUnicycler is a hybrid assembly pipeline for bacterial genomes.A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads.Up-to-datehttps://github.com/rrwick/UnicyclerAssemblyunicycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler
usher0.2.10.6.3usherTo updateUShER toolkit wrappersTo updatehttps://github.com/yatisht/usherPhylogeneticsusheriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/usher
valet1.0valetTo updateA pipeline for detecting mis-assemblies in metagenomic assemblies.To updatehttps://github.com/marbl/VALETMetagenomicsvaletiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/valet
vapor1.0.21.0.2vaporUp-to-datevaporVAPORData retrieval, De-novo assembly, Read mappingWhole genome sequencing, Mapping, Sequence assemblyClassify Influenza samples from raw short read sequence dataVAPOR 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.Up-to-datehttps://github.com/connor-lab/vaporSequence Analysisvaporiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vapor
vardict1.8.3pythonTo updateVarDict - calls SNVs and indels for tumour-normal pairsTo updatehttps://github.com/AstraZeneca-NGS/VarDictJavaVariant Analysisvardict_javaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vardict
variant_analyzer2.0.0matplotlibTo updateCollection of tools for analyzing variants in duplex consensus sequencing (DCS) dataTo updateVariant Analysisvariant_analyzeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/variant_analyzer
varscan2.4.32.4.6varscanTo updateVarScan is a variant caller for high-throughput sequencing dataTo updatehttps://dkoboldt.github.io/varscan/Variant Analysisvarscaniuchttps://github.com/galaxyproject/iuc/tree/master/tools/varscan
varvamp1.1.11.1.1varvampUp-to-datevarvampvarVAMPPCR primer designVirologyVariable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse virusesvariable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses. The input is an alignment of your viral (full-genome) sequences.Up-to-datehttps://github.com/jonas-fuchs/varVAMP/Sequence Analysisvarvampiuchttps://github.com/jonas-fuchs/varVAMP
vcf2maf1.6.211.6.21vcf2mafUp-to-datevcf2maf: Convert VCF into MAFUp-to-dateConvert Formatsvcf2mafiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vcf2maf
vcfanno0.3.50.3.5vcfannoUp-to-datevcfannovcfannoSNP annotationGenetic variation, Data submission, annotation and curationAnnotate VCF filesFast, flexible annotation of genetic variants.Up-to-datehttps://github.com/brentp/vcfannoVariant Analysisvcfannoiuchttps://github.com/galaxyproject/tools-iuc/vcfanno/
vegan2.4-32.3_4r-veganTo updateTo updatehttps://cran.r-project.org/package=veganMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vegan/
velocyto0.17.170.17.17velocyto.pyUp-to-dateVelocyto is a library for the analysis of RNA velocity.Up-to-datehttp://velocyto.org/Transcriptomicsvelocytoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velocyto
velvet1.2.10velvetTo updatevelvetVelvetFormatting, De-novo assemblySequence assemblyde novo genomic assembler specially designed for short read sequencing technologiesA de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD.To updatehttps://www.ebi.ac.uk/~zerbino/velvet/Assemblyvelvetdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet
velvet_optimiser2.2.6+galaxy21.2.10velvetTo updatevelvetoptimiserVelvetOptimiserOptimisation and refinement, Sequence assemblyGenomics, Sequence assemblyAutomatically optimize Velvet assembliesThis tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly.To updateAssemblyvelvetoptimisersimon-gladmanhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser
verkko1.3.12.0verkkoTo updateTelomere-to-telomere assembly pipelineTo updatehttps://github.com/marbl/verkkoAssemblyverkkoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/verkko
vg1.23.01.55.0vgTo updateVariation 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/vg
virhunter1.0.0numpyTo updatevirhunterVirHunterSequence classificationVirologyDeep Learning method for novel virus detection in sequencing dataVirHunter 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).To updatehttps://github.com/cbib/virhunterMachine Learningvirhunteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/VirHunter
volcanoplot0.0.52.2.1r-ggplot2To updateTool to create a Volcano PlotTo updateVisualization, Transcriptomics, Statisticsvolcanoplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplot
vsearch2.8.32.27.0vsearchTo updatevsearchVSEARCHDNA mapping, Chimera detectionMetagenomics, Sequence analysisVSEARCH including searching, clustering, chimera detection, dereplication, sorting, masking and shuffling of sequences.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.To updatehttps://github.com/torognes/vsearchSequence Analysisvsearchiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch
vsnp3.0.60.22.0pysamTo updateThe 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/vsnp
weather_app0.1.2curlTo updateprovides simple weather in text formatTo updatehttp://wttr.in/Visualization, Web Servicessimpleweatheriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/weather_app
weblogo33.5.03.7.9weblogoTo updateweblogoWebLogoSequence cluster visualisation, Sequence visualisation, Sequence motif recognitionNucleic acid sites, features and motifs, Sequence analysisSequence Logo generator for fastaWeb-based application designed to make generate sequence logos.To updateGraphicsweblogo3devteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/weblogo3
windowmasker1.02.15.0blastTo updateIdentify 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/
winnowmap2.032.03winnowmapUp-to-dateA 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/winnowmap
xpath1.47perl-xml-xpathTo updateXPath XML querying toolTo updatehttp://search.cpan.org/dist/XML-XPath/Text Manipulationxpathiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/xpath
yahs1.2a.21.2a.2yahsUp-to-dateYet Another Hi-C scaffolding toolUp-to-datehttps://github.com/c-zhou/yahsAssemblyyahsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs
zerone1.01.0zeroneUp-to-dateChIP-seq discretization and quality controlUp-to-datehttps://github.com/nanakiksc/zeroneChIP-seqzeroneiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/zerone
bamtools2.5.22.5.2bamtoolsUp-to-dateOperate on and transform BAM datasets in various ways using bamtoolsUp-to-datehttps://github.com/pezmaster31/bamtoolsSequence Analysis, SAMbamtoolsdevteamhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools
bamtools_filter2.5.22.5.2bamtoolsUp-to-dateFilter BAM datasets on various attributes using bamtools filterUp-to-datehttps://github.com/pezmaster31/bamtoolsSequence Analysis, SAMbamtools_filterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filter
bamtools_split2.5.22.5.2bamtoolsUp-to-dateUp-to-datehttps://github.com/pezmaster31/bamtoolsSequence Analysis, SAMiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_split
biotradis1.4.51.4.5biotradisUp-to-dateBio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data.Up-to-datehttps://www.sanger.ac.uk/science/tools/bio-tradisGenome annotationbiotradisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradis
cuffcompare2.2.12.2.1cufflinksUp-to-dateGalaxy 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/cuffcompare
cuffdiff2.2.12.2.1cufflinksUp-to-dateGalaxy 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/cuffdiff
cufflinks2.2.12.2.1cufflinksUp-to-dateGalaxy 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/cufflinks
cuffmerge2.2.12.2.1cufflinksUp-to-dateGalaxy 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/cuffmerge
cuffnorm2.2.12.2.1cufflinksUp-to-dateThe Cuffnorm toolUp-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffnormdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnorm
cuffquant2.2.12.2.1cufflinksUp-to-dateThe Cuffquant toolUp-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffquantdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquant
fasta_clipping_histogram0.0.140.0.14fastx_toolkitUp-to-dateLength 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_histogram
fasta_formatter0.0.140.0.14fastx_toolkitUp-to-dateFASTA Width formatterUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulationfasta_formatterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_formatter
fasta_nucleotide_changer0.0.140.0.14fastx_toolkitUp-to-dateRNA/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_changer
fastq_quality_boxplot0.0.140.0.14fastx_toolkitUp-to-dateDraw 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_boxplot
fastq_quality_converter0.0.140.0.14fastx_toolkitUp-to-dateQuality 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_converter
fastq_quality_filter0.0.140.0.14fastx_toolkitUp-to-dateFilter 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_filter
fastq_to_fasta0.0.140.0.14fastx_toolkitUp-to-dateFASTQ 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_fasta
fastx_artifacts_filter0.0.140.0.14fastx_toolkitUp-to-dateRemove 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_filter
fastx_barcode_splitter0.0.140.0.14fastx_toolkitUp-to-dateBarcode 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_splitter
fastx_clipper0.0.140.0.14fastx_toolkitUp-to-dateClip 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_clipper
fastx_collapser0.0.140.0.14fastx_toolkitUp-to-dateCollapse sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulationfastx_collapserdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_collapser
fastx_nucleotides_distribution0.0.140.0.14fastx_toolkitUp-to-dateDraw 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_distribution
fastx_quality_statistics0.0.140.0.14fastx_toolkitUp-to-dateCompute 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_statistics
fastx_renamer0.0.140.0.14fastx_toolkitUp-to-dateRename 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_renamer
fastx_reverse_complement0.0.140.0.14fastx_toolkitUp-to-dateReverse-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_complement
fastx_trimmer0.0.140.0.14fastx_toolkitUp-to-dateTrim 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_trimmer
fastq_combiner1.1.51.1.5galaxy_sequence_utilsUp-to-dateCombine 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_combiner
fastq_filter1.1.51.1.5galaxy_sequence_utilsUp-to-dateFilter 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_filter
fastq_groomer1.1.51.1.5galaxy_sequence_utilsUp-to-dateConvert 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_groomer
fastq_manipulation1.1.51.1.5galaxy_sequence_utilsUp-to-dateManipulate 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_manipulation
fastq_masker_by_quality1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ 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_quality
fastq_paired_end_deinterlacer1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ 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_deinterlacer
fastq_paired_end_interlacer1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ 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_interlacer
fastq_paired_end_joiner1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ 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_joiner
fastq_paired_end_splitter1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ 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_splitter
fastq_stats1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ 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_stats
fastq_to_tabular1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ 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_tabular
fastq_trimmer1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ 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_trimmer
fastqtofasta1.1.51.1.5galaxy_sequence_utilsUp-to-dateFASTQ to FASTA converterUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastqtofastadevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta
tabular_to_fastq1.1.51.1.5galaxy_sequence_utilsUp-to-dateTabular 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_fastq
kraken1.1.1krakenTo updateKraken 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.To updatehttp://ccb.jhu.edu/software/kraken/Metagenomicskrakendevteamhttps://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken/
kraken22.1.12.1.3kraken2To updatekraken2kraken2Taxonomic classificationTaxonomy, MetagenomicsKraken2 for taxonomic designation.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.To updatehttp://ccb.jhu.edu/software/kraken/Metagenomicskraken2iuchttps://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken2/kraken2/
samtools1.15.11.19.2samtoolsTo updateTo updatehttps://github.com/samtools/samtoolsSAMiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools
snpeff1.70biopythonTo updateSnpEff 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/snpeff
snpsift5.2snpsiftTo updatesnpEff SnpSift tools from Pablo CingolaniTo updatehttp://snpeff.sourceforge.net/SnpSift.htmlVariant Analysissnpsiftiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift
snpsift_dbnsfp5.2snpsiftTo updatesnpEff 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_dbnsfp
snpsift_genesets5.2snpsiftTo updateAnnotate 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/
vcf2tsv1.0.9vcflibTo updateConverts VCF files into tab-delimited formatTo updatehttps://github.com/ekg/vcflibVariant Analysis, Convert Formatsvcf2tsvdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcf2tsv
vcfaddinfo1.0.9vcflibTo updateAdds 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/vcfaddinfo
vcfallelicprimitives1.0.9vcflibTo updateSplits 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/vcfallelicprimitives
vcfannotate1.0.9vcflibTo updateIntersect VCF records with BED annotationsTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfannotatedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfannotate
vcfannotategenotypes1.0.9vcflibTo updateAnnotate 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/vcfannotategenotypes
vcfbedintersect1.0.9vcflibTo updateIntersect VCF and BED datasetsTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfbedintersectdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfbedintersect
vcfbreakcreatemulti1.0.9vcflibTo updateBreak 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/vcfbreakcreatemulti
vcfcheck1.0.9vcflibTo updateVerify that the reference allele matches the reference genomeTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfcheckdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcheck
vcfcombine1.0.9vcflibTo updateCombine multiple VCF datasetsTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfcombinedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcombine
vcfcommonsamples1.0.9vcflibTo updateOutput 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/vcfcommonsamples
vcfdistance1.0.9vcflibTo updateCalculate distance to the nearest variant.To updatehttps://github.com/ekg/vcflibVariant Analysisvcfdistancedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfdistance
vcffilter1.0.9vcflibTo updateTool for filtering VCF filesTo updatehttps://github.com/ekg/vcflibVariant Analysisvcffilterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcffilter
vcffixup1.0.9vcflibTo updateCount 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/vcffixup
vcfflatten1.0.9vcflibTo updateRemoves 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/vcfflatten
vcfgeno2haplo1.0.9vcflibTo updateConvert genotype-based phased alleles into haplotype allelesTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfgeno2haplodevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfgeno2haplo
vcfgenotypes1.0.9vcflibTo updateConvert numerical representation of genotypes to allelic.To updatehttps://github.com/ekg/vcflibVariant Analysisvcfgenotypesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfgenotypes
vcfhethom1.0.9vcflibTo updateCount 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/vcfhethom
vcfleftalign1.0.9vcflibTo updateLeft-align indels and complex variants in VCF datasetTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfleftaligndevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfleftalign
vcfprimers1.0.9vcflibTo updateExtract flanking sequences for each VCF recordTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfprimersdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfprimers
vcfrandomsample1.0.9vcflibTo updateRandomly sample sites from VCF datasetTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfrandomsampledevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfrandomsample
vcfselectsamples1.0.9vcflibTo updateSelect samples from a VCF fileTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfselectsamplesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfselectsamples
vcfsort1.0.9vcflibTo updateSort VCF dataset by coordinateTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfsortdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfsort
vcfvcfintersect1.0.9vcflibTo updateIntersect two VCF datasetsTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfvcfintersectdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfvcfintersect
ThermoRawFileParser1.3.41.4.3thermorawfileparserTo updateThermo RAW file converterTo updatehttps://github.com/compomics/ThermoRawFileParserProteomicsthermo_raw_file_convertergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser
appendfdr0.2.0To updateTo updateappendfdrgalaxyp
bed_to_protein_map0.2.0pythonTo updateConverts 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_map
blast_plus_remote_blastp2.6.02.15.0blastTo updateNCBI 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_plus
bumbershoot3.0.211423_0_21142_0e4f4a4bumbershootTo updateTo updatehttp://proteowizard.sourceforge.net/Proteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
calisp3.0.133.0.13calispUp-to-dateCalgary approach to isotopes in proteomicsUp-to-datehttps://github.com/kinestetika/Calisp/Proteomicscalispgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/calisp
cardinal2.10.03.4.3bioconductor-cardinalTo updateStatistical and computational tools for analyzing mass spectrometry imaging datasetsTo updatehttp://cardinalmsi.orgProteomics, Metabolomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinal
dbbuilder0.3.4wgetTo updateProtein Database DownloaderTo updatehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilderProteomicsdbbuildergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder
decoyfastaTo updateGalaxy tool wrapper for the transproteomic pipeline decoyFASTA tool.To updateProteomicsdecoyfastagalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfasta
dia_umpire2.1.32.1.6dia_umpireTo updateDIA-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_umpire
dialignr1.2.02.10.0bioconductor-dialignrTo updateDIAlignR 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/dialignr
diann1.8.1To updateDiaNN (DIA-based Neural Networks) is a software for DIA/SWATH data processing.To updatehttps://github.com/vdemichev/DiaNNProteomicsdianngalaxyphttps://github.com/vdemichev/DiaNN
diapysef0.3.5.01.0.10diapysefTo updatediapysef is a convenience package for working with DIA-PASEF dataTo updatehttps://pypi.org/project/diapysef/Proteomicsdiapysefgalaxyphttps://github.com/galaxyproject/tools-iuc/tree/master/tools/diapysef
diffacto1.0.61.0.6diffactoUp-to-dateDiffacto comparative protein abundance estimationUp-to-datehttps://github.com/statisticalbiotechnology/diffactoProteomicsdiffactogalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffacto
digestdb0.1.0trans_proteomic_pipelineTo updateTo updatedigestdbgalaxyp
directag_and_tagreconTo updateTo updatedirectag_and_tagrecongalaxyp
data_manager_eggnog_mapperTo updatedownloads eggnog data for eggnog-mapperTo updateProteomicsdata_manager_eggnog_mappergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper_data_manager
data_manager_eggnog_mapper_abspathTo updatedownload eggnog data for eggnog-mapperTo updateProteomicsdata_manager_eggnog_mapper_abspathgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspath
eggnog_mapper2.1.82.1.12eggnog-mapperTo updateeggnog-mapper-v2eggNOG-mapper v2Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrievalMetagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysiseggnog-mapper fast functional annotation of novel sequencesEggNOG-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.To updateProteomicseggnog_mappergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper
encyclopedia1.12.342.12.30encyclopediaTo updateMass Spec Data-Independent Acquisition (DIA) MS/MS analysisTo updatehttps://bitbucket.org/searleb/encyclopedia/wiki/HomeProteomicsencyclopediagalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia
fasta_merge_files_and_filter_unique_sequences1.2.0pythonTo updateConcatenate 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_sequences
fastg2protlib1.0.2To updateGenerate FASTA from FASTGTo updatehttps://github.com/galaxyproteomics/fastg2protlib.gitProteomicsfastg2protlibgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlib
feature_alignment0.11.00.11.0msproteomicstoolsUp-to-dateTRIC integrates information from all available runs via a graph-based alignment strategyUp-to-dateProteomicsfeature_alignmentgalaxyphttps://github.com/msproteomicstools/msproteomicstools/blob/master/TRIC-README.md
filter_by_fasta_ids2.3pythonTo updateFilter 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_ids
flashlfq1.0.3.11.2.6flashlfqTo updateFlashLFQ mass-spectrometry proteomics label-free quantificationTo updatehttps://github.com/smith-chem-wisc/FlashLFQProteomicsflashlfqgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq
gffcompare_to_bed0.2.1pythonTo updateFilter 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_bed
hardklor2.30.1+galaxy12.3.2hardklorTo updateHardklörTo updateProteomicshardklorgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/hardklor
idconvert3_0_9992proteowizardTo updateConvert mass spectrometry identification files on linux or MacOSXTo updateProteomicsidconvertgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert
lfq_protein_quant1.02.28.1bioconductor-msnbaseTo updateEnable protein summarisation and quantitationTo updatehttps://github.com/compomics/LFQ_galaxy_pProteomicslfq_protein_quantgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quant
ltq_iquant_cliTo updateTo updateltq_iquant_cligalaxyp
maldiquant1.22.0r-baseTo updateMALDIquant 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/MALDIquant
map_peptides_to_bed0.21.70biopythonTo updateMap 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_bed
maxquant2.0.3.02.0.3.0maxquantUp-to-datewrapper for MaxQuantUp-to-datehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquantProteomicsmaxquantgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant
meta_proteome_analyzer2.0.02.0.0mpa-portableUp-to-dateMetaProteomeAnalyzerUp-to-datehttps://github.com/compomics/meta-proteome-analyzer/Proteomicsmeta_proteome_analyzergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzer
metagene_annotator1.0.01.0metagene_annotatorTo updateMetaGeneAnnotator gene-finding program for prokaryote and phageTo updateSequence Analysismetagene_annotatorgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/metagene_annotator
metanovo1.9.41.9.4metanovoUp-to-dateProduce targeted databases for mass spectrometry analysis.Up-to-datehttps://github.com/uct-cbio/proteomics-pipelinesProteomicsmetanovogalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo
metaquantome2.0.22.0.2metaquantomeUp-to-datequantitative analysis of microbiome taxonomy and functionUp-to-datehttps://github.com/galaxyproteomics/metaquantome/Proteomicsmetaquantomegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome
mgf_formatter1.0.01.0.0mgf-formatterUp-to-dateUp-to-datemgf_formattergalaxyp
moFF2.0.32.0.3moffUp-to-datemoFF (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/moFF
morpheus2.255.0287morpheusTo updateMorpheus MS Search ApplicationTo updateProteomicsmorpheusgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus
mqppep0.1.191.64.0bioconductor-preprocesscoreTo updateMaxQuant Phosphoproteomic Enrichment Pipeline - Preprocessing and ANOVATo updatehttps://github.com/galaxyproteomics/tools-galaxyp/Proteomicsmqppepgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppep
msconvert3.0.20287To updatemsconvert Convert and/or filter mass spectrometry files (including vendor formats) using the official Docker containerTo updateProteomicsmsconvertgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert
msgfplus0.52023.01.1202msgf_plusTo updateMSGF+To updateProteomicsmsgfplusgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplus
msms_extractor1.0.03_0_9992proteowizardTo updateExtract MS/MS scans from the mzML file(s) based on PSM report.To updateProteomicsmsms_extractorgalaxyp
msstats4.0.04.10.0bioconductor-msstatsTo updateMSstats tool for analyzing mass spectrometry proteomic datasetsTo updatehttps://github.com/MeenaChoi/MSstatsProteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats
msstatstmt2.0.02.10.0bioconductor-msstatstmtTo updateMSstatsTMT 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/msstatstmt
mt2mq1.1.0r-tidyverseTo updateTool to prepare metatranscriptomic outputs from ASaiM for MetaquantomeTo updateProteomicsmt2mqgalaxyp
mz_to_sqlite2.1.1+galaxy02.1.1mztosqliteTo updateCreates a SQLite database for proteomics dataTo updateProteomicsmz_to_sqlitegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite
openms2.83.1.0openmsTo updateOpenMS Suite for LC/MS data management and analysesTo updatehttps://www.openms.de/Proteomicsopenmsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms
pathwaymatcher1.9.1pathwaymatcherTo updateReactome Pathway MatcherTo updatehttps://github.com/LuisFranciscoHS/PathwayMatcherProteomicsreactome_pathwaymatchergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcher
pep_pointer0.1.3+galaxy1pythonTo updatePepPointer categorizes peptides by their genomic coordinates.To updateGenomic Interval Operations, Proteomicspep_pointergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointer
pepquery1.6.22.0.2pepqueryTo updateA peptide-centric MS search engine for novel peptide identification and validation.To updatehttps://pepquery.orgProteomicspepquerygalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery
pepquery22.0.22.0.2pepqueryUp-to-datePepQuery2 peptide-centric MS search for peptide identification and validationUp-to-datehttps://pepquery.orgProteomicspepquery2galaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery2
peptide_genomic_coordinate1.0.0pythonTo updateGets genomic coordinate of peptides based on the information in mzsqlite and genomic mapping sqlite filesTo updateProteomicspeptide_genomic_coordinategalaxyp
peptideshaker4.3.6searchguiTo updatePeptideShaker and SearchGUITo updatehttp://compomics.github.ioProteomicspeptideshakergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker
pepxml_to_xlsTo updateConvert PepXML to TabularTo updateProteomicspepxml_to_xlsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xls
percolator3.53.5percolatorUp-to-datePercolatorUp-to-dateProteomicspercolatorgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/percolator
pi_db_tools1.3pythonTo updateHiRIEF toolsTo updateProteomicshirieftoolsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/pi_db_tools
pmd_fdr1.4.0r-baseTo updateCalculate 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_fdr
custom_pro_db1.22.01.37.1bioconductor-rgalaxyTo updateCustomProDBTo updatehttps://bioconductor.org/packages/release/bioc/html/customProDB.htmlProteomicscustom_pro_dbgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_db
custom_pro_db_annotation_data_managerTo updateCustomProDB AnnotationTo updatehttps://bioconductor.org/packages/release/bioc/html/customProDB.htmlProteomicscustom_pro_db_annotation_data_managergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_db
psm2sam1.3.2.1r-baseTo updatePSM to SAMTo updatehttps://bioconductor.org/packages/release/bioc/html/proBAMr.htmlProteomicspsm_to_samgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/psm2sam
proteinpilot0.1To updateTo updateproteinpilotgalaxyp
retrieve_ensembl_bed0.1.0To updateRetrieve 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_bed
translate_bed0.1.0To updateTranslate BED transcript CDS or cDNA in 3 framesTo updatehttp://rest.ensembl.org/Proteomicstranslate_bedgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bed
proteomiqon_joinquantpepionswithproteins0.0.10.0.2proteomiqon-joinquantpepionswithproteinsTo updateThe 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_joinquantpepionswithproteins
proteomiqon_labeledproteinquantification0.0.10.0.3proteomiqon-labeledproteinquantificationTo updateThe 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_labeledproteinquantification
proteomiqon_labelfreeproteinquantification0.0.10.0.3proteomiqon-labelfreeproteinquantificationTo updateThe 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_labelfreeproteinquantification
proteomiqon_mzmltomzlite0.0.80.0.8proteomiqon-mzmltomzliteUp-to-dateThe 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_MzMLToMzLite
proteomiqon_peptidedb0.0.70.0.7proteomiqon-peptidedbUp-to-dateThe 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_peptidedb
proteomiqon_peptidespectrummatching0.0.70.0.7proteomiqon-peptidespectrummatchingUp-to-dateGiven 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_peptidespectrummatching
proteomiqon_proteininference0.0.70.0.7proteomiqon-proteininferenceUp-to-dateMS-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_proteininference
proteomiqon_psmbasedquantification0.0.80.0.9proteomiqon-psmbasedquantificationTo updateThe 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_psmbasedquantification
proteomiqon_psmstatistics0.0.80.0.8proteomiqon-psmstatisticsUp-to-dateThe 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_psmstatistics
proteore_venn_diagram2021.06.08pythonTo updateProteoRE JVenn DiagramTo updateProteomicsproteore_venn_diagramgalaxyp
protxml_to_xls0.1.0trans_proteomic_pipelineTo updateTo updateprotxml_to_xlsgalaxyp
psm_eval0.1.0binaries_for_psm_evalTo updateTo updatepsm_evalgalaxyp
psm_validation1.0.3To updateValidate PSM from Ion FragmentationTo updatehttps://github.com/galaxyproteomics/psm_fragments.gitProteomicspsm_validationgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validation
pyprophet2.1.42.2.5pyprophetTo updateSemi-supervised learning and scoring of OpenSWATH results.To updatehttps://github.com/PyProphet/pyprophetProteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet
pyteomics4.4.14.7.1pyteomicsTo updatepyteomicsPyteomicsProtein identificationProteomics, Proteomics experimentTools using the pyteomics libraryFramework for proteomics data analysis, supporting mzML, MGF, pepXML and more.To updatehttps://pyteomics.readthedocs.io/en/latest/Proteomics, Metabolomicspyteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomics
quantp1.1.21.11.6r-data.tableTo updateCorrelation between protein and transcript abundanceTo updateProteomicsquantpgalaxyp
quantwiz_iq2.02.0quantwiz-iqUp-to-dateIsobaric Quantitation using QuantWiz-IQUp-to-datehttps://sourceforge.net/projects/quantwiz/Proteomicsquantwiz_iqgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iq
qupath_roi_splitter0.1.0+galaxy1geojsonTo updateSplit ROI coordinates of QuPath TMA annotation by cell typeTo updatehttps://github.com/npinter/ROIsplitterImagingqupath_roi_splittergalaxyphhttps://github.com/npinter/ROIsplitter
rawtools2.0.4rawtoolsTo updateRaw ToolsTo updatehttps://github.com/kevinkovalchik/RawToolsProteomicsrawtoolsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtools
regex_find_replace1.0.3pythonTo updateUse python regular expressions to find and replace textTo updateText Manipulationregex_find_replacegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/regex_find_replace
scaffold0.1.0scaffoldTo updateTo updatescaffoldgalaxyp
sixgill0.2.40.2.4sixgillUp-to-dateSix-frame Genome-Inferred Libraries for LC-MS/MSUp-to-dateProteomics, MetaProteomicssixgillgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgill
spectrast2spectrast_irt0.1.00.11.0msproteomicstoolsTo updateFilter from spectraST files to swath input filesTo updateProteomicsspectrast2spectrast_irtgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irt
spectrast2tsv0.1.00.11.0msproteomicstoolsTo updateFilter from spectraST files to swath input filesTo updateProteomicsspectrast2tsvgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsv
translate_bed_sequences0.2.01.70biopythonTo updatePerform 3 frame translation of BED file augmented with a sequence columnTo updateProteomicstranslate_bed_sequencesgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequences
unipept4.5.1pythonTo updateUnipept retrieves metaproteomics informationTo updatehttps://github.com/galaxyproteomics/tools-galaxypProteomicsunipeptgalaxyphttps://unipept.ugent.be/apidocs
uniprotxml_downloader2.4.0requestsTo updateDownload UniProt proteome in XML or fasta formatTo updateProteomicsuniprotxml_downloadergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader
validate_fasta_database0.1.51.0validate-fasta-databaseTo updateruns 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_databasegalaxyp
bio3d2.4_12.3_3r-bio3dTo updateBio3d 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/bio3d
biomoldyn1.5.2scipyTo updateTools for MD analysisTo updatehttps://github.com/moldyn/Molecular Dynamics, Computational chemistrybiomoldynchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/
ambertools21.10ambertoolsTo updateAmbertools 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/
packmol18.169.1packmolTo updatePACKMOL 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-compchem
topologyeditors0pythonTo updateSet 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/topologyeditors
free_energyTo updateFree energy tools of BRIDGE.To updateMolecular Dynamics, Computational chemistryfreeenergychemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/free_energy
gromacs20222021.3gromacsTo updateGROMACS 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/gromacs
mdanalysis1.0.0mdanalysisTo updateMDAnalysis is a package for analyzing trajectories from molecular dynamics (MD) simulationsTo updatehttps://github.com/MDAnalysis/mdanalysisComputational chemistrymdanalysischemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/
mdfileconverter1.9.7mdtrajTo updateA tool for interconverting between different MD structure and trajectory file formats.To updateMolecular Dynamics, Computational chemistrymd_converterchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdfileconverter
mdslicer1.9.9mdtrajTo updateA tool for slicing trajectory files using MDTraj.To updateMolecular Dynamics, Computational chemistrymd_converterchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer
mdtraj1.9.7mdtrajTo updateMDTraj 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/
openmm1.8.1pdbfixerTo updateOpenMM 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/openmm
vmdTo updatevmd 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/vmd
artbio_bam_cleaning1.10+galaxy01.19.2samtoolsTo updatefilter 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_cleaning
bamparse4.1.10.22.0pysamTo updateGenerates hit count lists from bam alignments.To updatehttp://artbio.frRNA, Transcriptomicsbamparseartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse
bigwig_to_bedgraph377+galaxy1448ucsc-bigwigtobedgraphTo updateConverts a bigWig file to bedGraph formatTo updatehttp://artbio.frConvert Formatsbigwig_to_bedgraphartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_bedgraph
bigwig_to_wig3+galaxy0377ucsc-bigwiginfoTo updateConverts a bigWig file to Wiggle (WIG) formatTo updatehttps://artbio.frConvert Formatsbigwig_to_wigartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_wig
blast_to_scaffold1.1.0pythonTo updateGenerate 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_scaffold
blast_unmatched1.0.1pythonTo updateExtract unmatched query sequences from blastTo updatehttp://artbio.frFasta Manipulationblast_unmatchedartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched
blastparser_and_hits2.7.1pythonTo updateParse blast outputs and compile hitsTo updatehttp://artbio.frAssembly, RNAblastparser_and_hitsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hits
blastx_to_scaffold1.1.1pythonTo updateGenerate 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_scaffold
cap32.0.110.2011cap3To updatecap3 wrapperTo updatehttp://artbio.frAssemblycap3artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cap3
cherry_pick_fasta4.1pythonTo updatePick fasta sequence with specific header contentTo updatehttp://artbio.frFasta Manipulationcherry_pick_fastaartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta
concat_multi_datasets1.4.2To updateConcatenate 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_datasets
cpm_tpm_rpk0.5.21.3.2r-optparseTo updateGenerate CPM,TPM or RPK from raw countsTo updatehttp://artbio.frTranscriptomicscpm_tpm_rpkartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk
deseq2_normalization1.40.2+galaxy01.42.0bioconductor-deseq2To updateNormalizes gene hitlistsTo updatehttp://artbio.frRNA, Transcriptomics, Sequence Analysis, Statisticsdeseq2_normalizationartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization
embl2fa0.2To updateConverts EMBL flat format to fasta formatTo updatehttp://artbio.frText Manipulationembl2faartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/embl2fa
ez_histograms3.4.42.2.1r-ggplot2To updateggplot2 histograms and density plotsTo updatehttps://github.com/tidyverse/ggplot2Visualization, Statisticsez_histogramsartbiohttps://github.com/artbio/tools-artbio/tree/main/tools/ez_histograms
fetch_fasta_from_ncbi3.1.01.12urllib3To updateFetch 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_ncbi
fisher_test2.32.0+galaxy02.34.0bioconductor-qvalueTo updateFisher's exact test on two-column hit lists.To updatehttp://artbio.frRNA, Statisticsfishertestartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_test
gatk44.1.7.04.5.0.0gatk4To updateFind somatic variationsTo updatehttp://artbio.frVariant Analysisgatk4artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gatk4
get_reference_fasta0.3.2To updateObtain reference genome sequence.To updatehttp://artbio.frData Source, Fasta Manipulationget_reference_fastaartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta
gsc_center_scale4.3.1+galaxy01.3.2r-optparseTo updateCenter or scale (standardize) dataTo updatehttp://artbio.frStatisticsgsc_center_scaleartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_center_scale
gsc_filter_cells4.3.1+galaxy01.3.2r-optparseTo updateFilter 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_cells
gsc_filter_genes4.3.1+galaxy01.3.2r-optparseTo updateFilter 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_genes
gsc_gene_expression_correlations4.3.1+galaxy01.3.2r-optparseTo updateCompute single-cell paire-wise gene expressions correlationsTo updatehttp://artbio.frTranscriptomicsgsc_gene_expression_correlationsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlations
gsc_high_dimensions_visualisation4.3+galaxy01.3.2r-optparseTo updateGenerates PCA, t-SNE and HCPC visualisationTo updatehttp://artbio.frTranscriptomics, Visualizationgsc_high_dimensions_visualisationartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualization
gsc_mannwhitney_de4.1.3+galaxy01.3.2r-optparseTo updatePerform 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_de
gsc_scran_normalize1.28.1+galaxy01.30.0bioconductor-scranTo updateNormalize raw counts using scranTo updatehttp://artbio.frTranscriptomicsgsc_scran_normalizeartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize
gsc_signature_score2.3.9+galaxy01.3.2r-optparseTo updateCompute signature scores from single cell RNAseq dataTo updatehttp://artbio.frTranscriptomicsgsc_signature_scoreartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score
guppy0.2.2To updateA wrapper for the guppy basecaller tool from Oxford Nanopore TechnologiesTo updatehttp://artbio.frNanoporeguppy_basecallerartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/guppy
high_dim_heatmap3.1.3+galaxy02.17.0r-gplotsTo updategplot 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_heatmap
justdiff3.10+galaxy0diffutilsTo updateUnix diffTo updatehttp://artbio.frText Manipulationjustdiffartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/justdiff
justgzip2.8+galaxy0pigzTo updateCompress fastq sequence filesTo updatehttp://artbio.frConvert Formatsjustgzipartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/justgzip
lumpy_smoove0.2.8+galaxy10.7.1svtyperTo updateGalaxy wrapper of the lumpy-using smoove workflowTo updatehttp://artbio.frVariant Analysislumpy_smooveartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_smoove
manta1.61.6.0mantaTo updateStructural variant and indel caller for mapped sequencing dataTo updatehttp://artbio.frVariant Analysismantaartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/manta
mapping_quality_stats0.22.01.3.2r-optparseTo updateCollects 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_stats
mircounts1.6tarTo updateGenerates miRNA count lists from read alignments to mirBase.To updatehttp://artbio.frRNA, Transcriptomicsmircountsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts
mutational_patterns3.12.03.12.0bioconductor-mutationalpatternsUp-to-dateMutational patterns and signatures in base substitution catalogsUp-to-datehttp://artbio.frVariant Analysismutational_patternsartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/mutational_patterns
oases1.4.00.2.09oasesTo updateShort read assemblerTo updatehttp://artbio.frAssembly, RNAoasesartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/oases
pathifier1.40.01.40.0bioconductor-pathifierUp-to-datepathifierUp-to-datehttps://Transcriptomics, Statisticspathifierartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier
pindel0.2.5b90.2.5b9pindelUp-to-datePindel detects genome-wide structural variation.Up-to-datehttp://artbio.frVariant Analysispindelartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/pindel
probecoverage0.22.00.22.0pysamUp-to-datecomputes and plots read coverage of genomic regions by sequencing datasetsUp-to-datehttp://artbio.frSequence Analysis, Genomic Interval Operations, Graphics, Statisticsprobecoverageartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/probecoverage
repenrich1.5.24.0.2bioconductor-edgerTo updateRepeat element profilingTo updatehttps://github.com/nskvir/RepEnrichTranscriptomics, Variant Analysisrepenrichartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/repenrich
rsem1.3.3rsemTo updatetranscript quantification from RNA-Seq dataTo updatehttps://github.com/deweylab/RSEMTranscriptomics, RNArsemartbiohttps://github.com/artbio/tools-artbio/tree/master/tools/rsem
sambamba0.7.1+galaxy11.0sambambaTo updatefilter 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/sambamba
sashimi_plot0.1.1pythonTo updateGenerates a sashimi plot from bam files.To updatehttp://artbio.frRNA, Transcriptomics, Graphics, Visualizationsashimi_plotartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plot
sequence_format_converter2.2.0pythonTo updatevarious fasta to tabular conversionsTo updatehttp://artbio.frConvert Formats, Fasta Manipulationsequence_format_converterartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sequence_format_converter
small_rna_clusters1.3.00.22.0pysamTo updateclusters 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_clusters
small_rna_maps3.1.1numpyTo updateGenerates 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_maps
small_rna_signatures3.4.20.22.0pysamTo updateComputes 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_signatures
snvtocnv3.0.0+galaxy13.0.0sequenza-utilsTo updateinfer copy number variations from a vcf file with SNVs using R sequenzaTo updatehttp://artbio.frVariant Analysissnvtocnvartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/snvtocnv
sr_bowtie2.3.01.3.1bowtieTo updatebowtie wrapper tool to align small RNA sequencing readsTo updatehttp://artbio.frRNA, Next Gen Mapperssr_bowtieartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie
sr_bowtie_dataset_annotation2.81.3.1bowtieTo updateMaps 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_annotation
tarfast50.6.1pigzTo updateproduces a tar.gz archive of fast5 sequence filesTo updatehttp://artbio.frNanoporetarfast5artbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/tarfast5
varscan_vaf0.1pythonTo updateCompute variant allele frequency in vcf files generated by varscan.To updatehttp://artbio.frVariant Analysisvarscan_vafartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/varscan_vaf
xpore2.1+galaxy02.1xporeTo updateIdentification and quantification of differential RNA modifications from direct RNA sequencingTo updatehttps://github.com/GoekeLab/xporeNanoporexporeartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/xpore
yac_clipper2.5.1pythonTo updateClips 3' adapters for small RNA sequencing reads.To updatehttp://artbio.frRNA, Fastq Manipulationyac_clipperartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/yac_clipper
EMLassemblyline0.1.1+galaxy0r-emlassemblylineTo updateTools 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/EMLassemblyline
Ecoregionalization_workflow0.1.0+galaxy0r-baseTo updateTools 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_workflow
Geom_mean_workflow0.1.0+galaxy0r-baseTo updateTools 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_workflow
PAMPA0.0.2To updateTools to compute and analyse biodiversity metricsTo updateEcologypampaecologyhttps://github.com/ColineRoyaux/PAMPA-Galaxy
ab1_fastq1.20.01.38.0bioconductor-sangerseqrTo updateTool to convert ab1 files into FASTQ filesTo updateConvert Formatsab1fastqecologyhttps://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/ab1_fastq
champ_blocs0.0.0r-baseTo updateCompute indicators for turnover boulders fieldsTo updateEcologyecologyhttps://github.com/Marie59/champ_blocs
consensus_from_alignments1.0.0r-bioseqTo updateTool to compute a consensus sequence from several aligned fasta sequencesTo updateSequence Analysisconsalignecologyhttps://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/consensus_from_alignments
data_exploration0.0.0r-tanglesTo updateExplore data through multiple statistical toolsTo updateEcologyecologyhttps://github.com/Marie59/Data_explo_tools
xarray2022.3.0xarrayTo updatexarray (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/
gdal3.0.0To updateGeospatial 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/gdal
interpolation1.0r-getoptTo updateRun IDW interpolation based on a .csv and .geojson fileTo updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation
medenv0.0.1pandasTo updateRetrieve environmental data from etopo, cmems and woaTo updatehttps://github.com/jeremyfix/medenvEcology, Data Sourceecologyhttps://github.com/jeremyfix/medenv
obisindicators0.0.2r-baseTo updateCompute biodiveristy indicators for marine data from obisTo updatehttps://github.com/Marie59/obisindicatorsEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators
ocean0.1.15To updateAccess, 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/ocean
regionalgam1.5r-mgcvTo updateTo updatehttps://github.com/RetoSchmucki/regionalGAMEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam
spocc1.2.2To updateGet species occurences dataTo updatehttps://cran.r-project.org/web/packages/spocc/index.htmlEcologyspocc_occecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc
srs_tools0.0.1r-baseTo updateCompute biodiversity indicators for remote sensing data from Sentinel 2To updateEcologyecologyhttps://github.com/Marie59/Sentinel_2A/srs_tools
stoc0.0.2To updateTools to analyse STOC data.To updateEcologystocepsecologyhttps://github.com/Alanamosse/Galaxy-E/tree/stoctool/tools/stoc
vigiechiro0.1.1To updateTools 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/vigiechiro
xmlstarlet1.6.1xmlstarletTo updateTool to convert a xml file from one metadata standard to anotherTo updateConvert Formatsxmlstarletecologyhttps://github.com/galaxyecology/tools-ecology/tree/main/tools-ecology/tools/xmlstarlet
c3s0.2.0pythonTo updateCopernicus Climate Change Service (C3S)To updatehttps://cds.climate.copernicus.eu/cdsapp#!/search?type=datasetClimate Analysisc3sclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s
cads0.1.0pythonTo updateCopernicus Atmosphere Data Store (ADS)To updatehttps://ads.atmosphere.copernicus.eu/#!/homeClimate Analysiscadsclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cads
cdo2.0.0To updateCDO (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/cdo
cesm2.1.32.1.3cesmUp-to-dateCommunity Earth System Model (CESM)Up-to-datehttps://www.cesm.ucar.edu/Climate Analysiscesmclimatehttps://github.com/ESCOMP/CESM
climate-stripes1.0.2pythonTo updateCreate 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-stripes
eodie1.0.2eodieTo updateEarth Observation Data Information ExtractorTo updatehttps://eodie.readthedocs.io/Climate Analysiseodieclimatehttps://gitlab.com/eetun-tiimi/EODIE
essential_climate_variables0.2.0pythonTo updateGet 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_variables
fates-emerald2.0fates-emeraldTo updateEMERALD 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-emerald
mean-per-zone0.2.0pythonTo updateCreates 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-zone
psy-maps1.2.1pythonTo updateVisualization 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-maps
shift-longitudes0.1.0pythonTo updateShift 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-longitudes
smithsonian-volcanoes0.1.0pythonTo updateRetrieve 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-volcanoes
droplet-barcode-plot1.6.1+galaxy20.0.1scxa-plotsTo updateMake 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.yml
fastq_provider0.4.40.4.7atlas-fastq-providerTo updateRetrieval 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_provider
gtf-2-gene-list1.52.0+galaxy01.1.0atlas-gene-annotation-manipulationTo updateUtility 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.yml
fastq_pair1.0+galaxy01.0fastq-pairTo updatePaired-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_pair
fastq_quality_trimmer0.0.14+galaxy00.0.14fastx_toolkitTo updateFASTQ 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_trimmer
fastq_utils0.25.1+galaxy00.25.2fastq_utilsTo updateSet 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_utils
salmon-kallisto-mtx-to-10x0.0.1+galaxy6scipyTo updateTransforms .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.yml
cell-types-analysis1.1.10.1.11cell-types-analysisTo updateTools 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/
data-hcav0.0.4+galaxy00.0.4hca-matrix-downloaderTo updateTools 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/
data-scxav0.0.2+galaxy2wgetTo updateTools 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/
decoupler1.4.0+galaxy11.5.0decouplerTo updatedecoupler - 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/
dropletutils1.0.40.0.5dropletutils-scriptsTo updateDe-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/
garnett0.2.80.0.5garnett-cliTo updateDe-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/
monocle30.1.40.0.9monocle3-cliTo updateDe-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/
sc31.8.00.0.6sc3-scriptsTo updateDe-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/
scanpy1.9.31.9.301scanpy-scriptsTo updatescanpy-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/scanpy
scater1.10.00.0.5scater-scriptsTo updateDe-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/
sccaf0.0.90.0.10sccafTo updateSCCAF: 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/sccaf
sceasy0.0.50.0.7r-sceasyTo updateConvert scRNA data object between popular formatsTo updateTranscriptomicssceasyebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/
scmap1.6.30.1.0scmap-cliTo updateDe-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/
scpred1.0.20.1.0scpred-cliTo updateDe-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/
seurat4.0.04.0.0seurat-scriptsUp-to-dateDe-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-gxa
ucsc-cell-browser1.0.0+galaxy11.2.5ucsc-cell-browserTo updatePython 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.yml
biotransformer3.0.202304033.0.20230403biotransformerUp-to-datebiotransformerBioTransformerMetabolic pathway prediction, PTM site prediction, Natural product identificationSmall molecules, Endocrinology and metabolism, Metabolomics, Carbohydrates, NMRBioTransformer is a tool for prediction of small molecule metabolism in mammals.BioTransformer is a freely available web server that supports accurate, rapid and comprehensive in silico metabolism prediction.Up-to-datehttps://bitbucket.org/djoumbou/biotransformerjar/src/master/Metabolomicsbiotransformerrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/biotransformer
filter_compounds3.1.12.3.90dev7d621d9openbabelTo updateTool 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_compounds
matchms0.24.00.24.2matchmsTo updatematchmsMatchmsSpectral library search, Format validation, FilteringMetabolomicsSearching, filtering and converting mass spectral libraries.Tool to import, process, clean, and compare mass spectrometry data.To updatehttps://github.com/matchms/matchmsMetabolomicsmatchmsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/matchms
misc1.0.0To updateTo updatehttps://github.com/RECETOX/galaxytoolsMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/misc
msmetaenhancer0.3.00.3.0msmetaenhancerUp-to-datemsmetaenhancerMSMetaEnhancerAnnotation, Standardisation and normalisationMetabolomics, Compound libraries and screening, Data submission, annotation and curationTool for mass spectra metadata annotation.Up-to-datehttps://github.com/RECETOX/MSMetaEnhancerMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancer
msp_merge0.1.00.24.2matchmsTo updateTo updatehttps://github.com/RECETOX/galaxytoolsMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/msp_merge
mzml_validator0.1.0+galaxy2lxmlTo updatemzML 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_validator
qcxms5.2.1To updateQCxMS 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/qcxms
query0.2clickTo updateExecute an SQL statement on a set of tablesTo updateText Manipulationqueryrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/query
ramclustr1.3.01.3.1r-ramclustrTo updateramclustrRAMClustRImputation, Standardisation and normalisation, Clustering, CorrelationMetabolomicsA feature clustering algorithm for non-targeted mass spectrometric metabolomics data.To updatehttps://rdrr.io/cran/RAMClustR/Metabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr
recetox_aplcms0.12.00.12.0r-recetox-aplcmsUp-to-daterecetox-aplcmsrecetox-aplcmsChromatographic alignment, Quantification, Peak detection, Feature extraction, AlignmentMetabolomicsPeak detection tool for HRMS profile data.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.Up-to-datehttps://github.com/RECETOX/recetox-aplcmsMetabolomicsrecetox-aplcmsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms
recetox_msfinderv3.5.2To updaterecetox-msfinderrecetox-msfinderAnnotationMetabolomicsThis 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.To updatehttps://github.com/RECETOX/recetox-msfinderMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox_msfinder
recetox_xmsannotator0.10.00.10.0r-recetox-xmsannotatorUp-to-daterecetox-xmsannotatorrecetox-xMSannotatorExpression profile pathway mapping, Structure comparison, Isotopic distributions calculation, AnnotationAnnotation tool for untargeted LCMS1 data. Uses a database and adduct list for compound annotation and intensity networks, isotopic patterns and pathways for annotation scoring.Up-to-datehttps://github.com/RECETOX/recetox-xMSannotatorMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator
rem_complex1.0.0pandasTo updateRemoves molecular coordination complexes.To updatehttps://github.com/RECETOX/galaxytoolsMetabolomicsrem_complexrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/rem_complex
retip0.5.4To updateretipRetipRetention time prediction, Spectrum calculation, Deisotoping, Formatting, DepositionMetabolomics, Proteomics experiment, Machine learning, Cheminformatics, ChemistryRetention 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.To updatehttps://github.com/PaoloBnn/RetipMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/retip
riassigner0.4.00.4.0riassignerUp-to-dateriassignerRIAssignerStandardisation and normalisationMetabolomics, Compound libraries and screening, Data submission, annotation and curationRIAssigner is a python tool for retention index (RI) computation for GC-MS data.Up-to-datehttps://github.com/RECETOX/RIAssignerMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/riassigner
rmassbank3.0.0pythonTo updateRMassBank 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/rmassbank
spec2vec0.8.00.8.0spec2vecUp-to-datespec2vecSpec2VecSpectrum calculation, Spectral library search, Database search, Natural product identificationProteomics experiment, Metabolomics, Natural language processing, ProteomicsMass spectra similarity scoring using a trained Spec2Vec model.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.Up-to-datehttps://github.com/iomega/spec2vecMetabolomicsspec2vecrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/spec2vec
waveica0.2.00.2.0r-recetox-waveicaUp-to-datewaveicaWaveICAStandardisation and normalisationMetabolomicsRemoval of batch effects for large-scale untargeted metabolomics data based on wavelet analysis.Removal of batch effects for large-scale untargeted metabolomics data based on wavelet transform.Up-to-datehttps://github.com/RECETOX/WaveICAMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/waveica
xtb6.6.1xtbTo updatePerforms semiempirical molecular optimization.To updatehttps://github.com/grimme-lab/xtbMetabolomicsxtb_molecular_optimizationrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/xtb
consolidate_vcfs1.8.21.8.2snvphyl-toolsUp-to-dateCombines freebayes and mpileup files for use by vcf2snvalignmentUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisconsolidate_vcfsnmlhttps://github.com/phac-nml/snvphyl-galaxy
filter_density1.8.21.8.2snvphyl-toolsUp-to-dateFilter out position based on distance between SNVsUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisfilter_densitynmlhttps://github.com/phac-nml/snvphyl-galaxy
filter_stats1.8.21.8.2snvphyl-toolsUp-to-dateSNVPhyl filter_statsUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisfilter_statsnmlhttps://github.com/phac-nml/snvphyl-galaxy
filter_vcf1.8.21.8.2snvphyl-toolsUp-to-dateSNVPhyl filter_vcfUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisfilter_vcfnmlhttps://github.com/phac-nml/snvphyl-galaxy
find_repeats1.8.21.8.2snvphyl-toolsUp-to-dateFind repetitive regions on a reference genome using MUMMerUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisfind_repeatsnmlhttps://github.com/phac-nml/snvphyl-galaxy
positions2snv_alignment1.8.21.8.2snvphyl-toolsUp-to-dateGenerate alignment of SNVs from SNVPhyl variant table.Up-to-datehttps://snvphyl.readthedocs.io/en/latest/Variant Analysispositions2snv_alignmentnmlhttps://github.com/phac-nml/snvphyl-galaxy
positions2snv_invariant_alignment1.8.21.8.2snvphyl-toolsUp-to-dateGenerate 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-galaxy
snv_matrix1.8.21.8.2snvphyl-toolsUp-to-dateGenerate matrix of SNV distancesUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysissnv_matrixnmlhttps://github.com/phac-nml/snvphyl-galaxy
vcf2snvalignment1.8.21.8.2snvphyl-toolsUp-to-dateGenerates multiple alignment of variant callsUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisvcf2snvalignmentnmlhttps://github.com/phac-nml/snvphyl-galaxy
verify_map1.8.21.8.2snvphyl-toolsUp-to-dateChecks the mapping quality of all BAM(s)Up-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisverify_mapnmlhttps://github.com/phac-nml/snvphyl-galaxy
suite_snvphylTo updateSNVPhyl suite defining all dependencies for SNVPhylTo updateSequence Analysissuite_snvphyl_1_2_3nmlhttps://github.com/phac-nml/snvphyl-galaxy
cooler0.9.31.19.1htslibTo updatecooler different tools to process Hi-C from mirnylabTo updatehttps://github.com/open2c/coolerEpigeneticscoolerlldelislehttps://github.com/lldelisle/tools-lldelisle/blob/master/tools/cooler/.shed.yml
fromHicupToJuicebox0.0.20.22.0pysamTo updateConvert the output of hicup (as sam or bam) to the input of juicebox.To updateEpigeneticsfrom_hicup_to_juiceboxlldelisle
fromgtfTobed120.11.1+galaxy10.12gffutilsTo updateConvert GTF files to BED12 formatTo updatehttps://pythonhosted.org/gffutils/contents.htmlConvert Formatsfromgtftobed12lldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromgtfTobed12
getTn5ExtendedCoverage0.0.20.22.0pysamTo updateTake an input bam from ATAC-seq and generate a bedgraph using the center of the Tn5 insertion with an extensionTo updateEpigeneticsgettn5extendedcoveragelldelisle
hyperstack_to_bleach_corrected_movie2023032820231211FijiTo updateGenerate blach corrected movie from hyperstackTo updateImaginghyperstack_to_bleach_corrected_movielldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie
incucyte_stack_and_upload_omero2023122120231211FijiTo updateCombine 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_omero
measure_gastruloids2022121620231211fijiTo updateGet 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_gastruloids
omero_clean_rois_tables2023062320231211fijiTo updateRemove 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_tables
omero_get_children_ids0.1.05.11.1omero-pyTo updateGet omero id of children of an omero object idTo updateImagingomero_get_children_idslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids
omero_hyperstack_to_fluo_measurements_on_gastruloid2023080920231211fijiTo updateAnalyse 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_gastruloid
omero_hyperstack_to_gastruloid_measurements2024021420231211fijiTo updateAnalyse 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_measurements
revertR2orientationInBam0.0.21.19.2samtoolsTo updateRevert the mapped orientation of R2 mates in a bam.To updateSAMrevertr2orientationinbamlldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/revertR2orientationInBam
upload_roi_and_measures_to_omero0.0.55.11.1omero-pyTo updateUpload 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_omero
blast2go0.0.11b2g4pipeTo updateMaps 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/blast2go
blast_rbh0.3.01.70biopythonTo updateBLAST 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_rbh
blastxml_to_top_descr0.1.2pythonTo updateMake 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_descr
make_nr0.0.21.70biopythonTo updateMake 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_nr
ncbi_blast_plus2.14.1pythonTo updateNCBI BLAST+To updatehttps://blast.ncbi.nlm.nih.gov/Sequence Analysisncbi_blast_plusdevteamhttps://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus
- -
\ No newline at end of file