diff --git a/.github/workflows/run_tests.yaml b/.github/workflows/run_tests.yaml index 87dd1c2e..0d520f28 100644 --- a/.github/workflows/run_tests.yaml +++ b/.github/workflows/run_tests.yaml @@ -1,72 +1,74 @@ name: Run tests - -on: - workflow_dispatch: - -# 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 +on: [push, pull_request] jobs: - fetch-all-tools-stepwise: + test-tools: runs-on: ubuntu-20.04 environment: fetch-tools - name: Fetch all tool stepwise - strategy: - matrix: - python-version: [3.8] - subset: - - test.list steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: '3.11' - name: Install requirement run: python -m pip install -r requirements.txt - - name: Test tool extraction + - name: Tool extraction # run: bash bin/extract_all_tools.sh run: | - bash ./bin/extract_all_tools_test.sh "${{ matrix.subset }}" + python bin/extract_galaxy_tools.py \ + extractools \ + --api $GITHUB_API_KEY \ + --all-tools "results/test_tools.tsv" \ + --all-tools-json "results/test_tools.json" \ + --planemo-repository-list "test.list" \ + --test env: GITHUB_API_KEY: ${{ secrets.GH_API_TOKEN }} - - name: Test tutorial extraction and filtering + - name: Tool filter + run: | + python bin/extract_galaxy_tools.py \ + filtertools \ + --tools "results/all_tools.json" \ + --ts-filtered-tools "results/microgalaxy/tools_filtered_by_ts_categories.tsv" \ + --filtered-tools "results/microgalaxy/tools.tsv" \ + --categories "data/communities/microgalaxy/categories" \ + --status "data/communities/microgalaxy/tool_status.tsv" + - name: Create interactive table + run: | + python bin/create_interactive_table.py \ + --table "results/microgalaxy/tools.tsv" \ + --template "data/interactive_table_template.html" \ + --output "results/microgalaxy/index.html" + - name: Create wordcloud + run: | + python bin/create_wordcloud.py \ + --table "results/microgalaxy/tools.tsv" \ + --wordcloud_mask "data/usage_stats/wordcloud_mask.png" \ + --output "results/microgalaxy/tools_wordcloud.png" \ + --stats_column "No. of tool users (2022-2023) (usegalaxy.eu)" + test-tutorials: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install requirement + run: python -m pip install -r requirements.txt + - name: Tutorial extraction run: | - bash ./bin/extract_filter_tutorial_test.sh + python bin/extract_gtn_tutorials.py \ + extracttutorials \ + --all_tutorials "results/test_tutorials.json" \ + --tools "results/all_tools.json" \ + --api $PLAUSIBLE_API_KEY \ + --test 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 tools bot - step fetch") - git push - - # fetch-all-tools-merge: - # runs-on: ubuntu-20.04 - # needs: fetch-all-tools-stepwise - # name: Fetch all tools merge - # 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: | - # cat results/repositories*.list_tools.tsv > results/all_tools.tsv - # bash ./bin/extract_all_tools_downstream.sh - # - name: Commit all tools - # run: | - # git config user.name github-actions - # git config user.email github-actions@github.com - # git diff --quiet || (git add results && git commit -m "fetch all tools bot - step merge") - # git push \ No newline at end of file + - name: Tutorial filtering + run: | + python bin/extract_gtn_tutorials.py \ + filtertutorials \ + --all_tutorials "results/test_tutorials.json" \ + --filtered_tutorials "results/microgalaxy/test_tutorials.tsv" \ + --tags "data/communities/microgalaxy/tutorial_tags" \ No newline at end of file diff --git a/bin/extract_all_tools_test.sh b/bin/extract_all_tools_test.sh deleted file mode 100755 index 2ba40be5..00000000 --- a/bin/extract_all_tools_test.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -mkdir -p 'results/' - -tsv_output="results/${1}_tools.tsv" -json_output="results/${1}_tools.json" - -python bin/extract_galaxy_tools.py \ - extractools \ - --api $GITHUB_API_KEY \ - --all-tools $tsv_output \ - --all-tools-json $json_output \ - --planemo-repository-list $1 \ - --test - diff --git a/bin/extract_filter_tutorials_test.sh b/bin/extract_filter_tutorials_test.sh deleted file mode 100644 index b4d066c3..00000000 --- a/bin/extract_filter_tutorials_test.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env bash - -mkdir -p 'results/' - -tsv_output="results/${1}_tools.tsv" -json_output="results/${1}_tools.json" - -python bin/extract_gtn_tutorials.py \ - extracttutorials \ - --all_tutorials "results/test_tutorials.json" \ - --tools "results/all_tools.json" \ - --api $PLAUSIBLE_API_KEY \ - --test - -if [[ ! -f "results/test_tutorials.json" ]] ; then - echo 'File "results/test_tutorials.json" is not there, aborting.' - exit -fi - -python bin/extract_gtn_tutorials.py \ - filtertutorials \ - --all_tutorials "results/test_tutorials.json" \ - --filtered_tutorials "results/microgalaxy/test_tutorials.tsv" \ - --tags "data/communities/microgalaxy/tutorial_tags" - -if [[ ! -f "results/microgalaxy/test_tutorials.tsv" ]] ; then - echo 'File "results/microgalaxy/test_tutorials.tsv" is not there, aborting.' - exit -fi - -rm "results/test_tutorials.json" -rm "results/microgalaxy/test_tutorials.tsv" diff --git a/bin/extract_galaxy_tools.py b/bin/extract_galaxy_tools.py index 5c279fe7..a8a33a47 100644 --- a/bin/extract_galaxy_tools.py +++ b/bin/extract_galaxy_tools.py @@ -1,10 +1,10 @@ #!/usr/bin/env python - import argparse import base64 import json import sys import time +import traceback import xml.etree.ElementTree as et from functools import lru_cache from pathlib import Path @@ -98,11 +98,16 @@ def get_string_content(cf: ContentFile) -> str: :param cf: GitHub ContentFile object """ + return base64.b64decode(cf.content).decode("utf-8") def get_tool_github_repositories( - g: Github, repository_list: Optional[str], run_test: bool, add_extra_repositories: bool = True + g: Github, + repository_list: Optional[str], + run_test: bool, + test_repository: str = "https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper", + add_extra_repositories: bool = True, ) -> List[str]: """ Get list of tool GitHub repositories to parse @@ -110,10 +115,11 @@ def get_tool_github_repositories( :param g: GitHub instance :param repository_list: The selection to use from the repository (needed to split the process for CI jobs) :param run_test: for testing only parse the repository + :test_repository: the link to the test repository to use for the test """ if run_test: - return ["https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper"] + return [test_repository] repo = g.get_user("galaxyproject").get_repo("planemo-monitor") repo_list: List[str] = [] @@ -318,11 +324,11 @@ def get_tool_metadata(tool: ContentFile, repo: Repository) -> Optional[Dict[str, # parse XML file and get meta data from there for file in file_list: if file.name.endswith("xml") and "macro" not in file.name: - file_content = get_string_content(file) try: + file_content = get_string_content(file) root = et.fromstring(file_content) except Exception: - print(file_content, sys.stderr) + print(traceback.format_exc()) else: # version if metadata["Galaxy wrapper version"] is None: @@ -513,6 +519,7 @@ def export_tools_to_tsv( :param output_fp: path to output file :param format_list_col: boolean indicating if list columns should be formatting """ + df = pd.DataFrame(tools).sort_values("Galaxy wrapper id") if format_list_col: df["ToolShed categories"] = shared_functions.format_list_column(df["ToolShed categories"]) @@ -698,6 +705,7 @@ def reduce_ontology_terms(terms: List, ontology: Any) -> List: f"Error while extracting tools from repo {r}: {e}", file=sys.stderr, ) + print(traceback.format_exc()) ####################################################### # add additional information to the List[Dict] object diff --git a/bin/extract_gtn_tutorials.py b/bin/extract_gtn_tutorials.py index 39b02154..4992752f 100644 --- a/bin/extract_gtn_tutorials.py +++ b/bin/extract_gtn_tutorials.py @@ -129,15 +129,19 @@ def get_youtube_stats(tuto: dict) -> None: tuto["video_versions"] = 0 tuto["video_view"] = 0 ydl_opts = {"ignoreerrors": True, "quiet": True} - if "video_library" in tuto and tuto["video_library"]["tutorial"]: - tuto["video_versions"] = len(tuto["video_library"]["tutorial"]["versions"]) - for v in tuto["video_library"]["tutorial"]["versions"]: - url = f"https://www.youtube.com/watch?v={v['link']}" - with yt_dlp.YoutubeDL(ydl_opts) as ydl: - info = ydl.extract_info(url, download=False) - info = ydl.sanitize_info(info) - if info: - tuto["video_view"] += info["view_count"] + recordings = [] + if "recordings" in tuto and tuto["recordings"]: + recordings = tuto["recordings"] + elif "slides_recordings" in tuto and tuto["slides_recordings"]: + recordings = tuto["slides_recordings"] + tuto["video_versions"] = len(recordings) + for v in recordings: + url = f"https://www.youtube.com/watch?v={v['youtube_id']}" + with yt_dlp.YoutubeDL(ydl_opts) as ydl: + info = ydl.extract_info(url, download=False) + info = ydl.sanitize_info(info) + if info: + tuto["video_view"] += info["view_count"] def format_tutorial(tuto: dict, edam_ontology: dict, tools: dict, feedback: dict, plausible_api: str) -> Dict: diff --git a/data/communities/assembly/categories b/data/communities/assembly/categories new file mode 100644 index 00000000..1facf984 --- /dev/null +++ b/data/communities/assembly/categories @@ -0,0 +1,5 @@ +Assembly +Fasta Manipulation +Fastq Manipulation +Nanopore + diff --git a/results/assembly/index.html b/results/assembly/index.html new file mode 100644 index 00000000..e7c67dec --- /dev/null +++ b/results/assembly/index.html @@ -0,0 +1,12453 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
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 new file mode 100644 index 00000000..71624f67 --- /dev/null +++ b/results/assembly/tools.tsv @@ -0,0 +1,177 @@ +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 new file mode 100644 index 00000000..71624f67 --- /dev/null +++ b/results/assembly/tools_filtered_by_ts_categories.tsv @@ -0,0 +1,177 @@ +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 new file mode 100644 index 00000000..a16bdde9 Binary files /dev/null and b/results/assembly/tools_wordcloud.png differ diff --git a/results/spoc/index.html b/results/spoc/index.html new file mode 100644 index 00000000..e65fd810 --- /dev/null +++ b/results/spoc/index.html @@ -0,0 +1,7063 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandGalaxy wrapper idGalaxy tool idsDescriptionbio.tool idbio.tool idsbiiibio.tool namebio.tool descriptionEDAM operationEDAM topicStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper sourceGalaxy wrapper parsed folderGalaxy wrapper versionConda idConda versionEDAM operation (no superclasses)EDAM topic (no superclasses)Available on UseGalaxy.org (Main)Available on UseGalaxy.org.auAvailable on UseGalaxy.euAvailable on UseGalaxy.frTools available on UseGalaxy.org (Main)Tools available on UseGalaxy.org.auTools available on UseGalaxy.euTools available on UseGalaxy.frTools available on ANASTASIATools available on APOSTLTools available on ARGs-OAPTools available on BF2I-MAPTools available on BioBixTools available on CIRM-CFBPTools available on Center for Phage Technology (CPT)Tools available on ChemFlowTools available on Coloc-statsTools available on CorGATTools available on CropGalaxyTools available on DintorTools available on FreeBioinfoTools available on GASLINITools available on Galaxy@AuBiTools available on Galaxy@PasteurTools available on GalaxyTrakrTools available on Genomic HyperbrowserTools available on GigaGalaxyTools available on HyPhy HIV NGS ToolsTools available on IPK Galaxy Blast SuiteTools available on ImmPort GalaxyTools available on InteractoMIXTools available on MISSISSIPPITools available on Mandoiu LabTools available on MiModD NacreousMapTools available on OqtansTools available on PalfinderTools available on PepSimiliTools available on PhagePromotorTools available on ProtologgerTools available on UseGalaxy.beTools available on UseGalaxy.czTools available on UseGalaxy.noNo. of tool users (2022-2023) (usegalaxy.eu)Total tool usage (usegalaxy.eu)Deprecated
aegeanaegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parsevalAEGeAn toolkit wrappersgaevalgaevalGAEVALGene Annotation EVAluation.Sequence annotationSequence analysis, Gene structureUp-to-datehttps://github.com/BrendelGroup/AEGeAnTranscriptomics, Sequence Analysisaegeaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/aegeanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean0.16.0aegean0.16.0Sequence annotationSequence analysis, Gene structure14441444000000000000000000000000000000004047168
anndataanndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loomImport, Export, Inspect and Manipulate Anndata and Loom objectsTo updatehttps://anndata.readthedocs.ioTranscriptomics, Sequence Analysisanndataiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata0.10.3anndata0.6.22.post154505450000000000000000000000000000000005562535620
arribaarriba, arriba_draw_fusions, arriba_get_filtersArriba detects fusion genes in RNA-Seq data after running RNA-STARUp-to-datehttps://github.com/suhrig/arribaSequence Analysis, Transcriptomicsarribaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/arribahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba2.4.0arriba2.4.0033003300000000000000000000000000000000030383528
askoraskor_deAskoR links EdgeR and AskOmicsTo updatehttps://github.com/askomics/askoRTranscriptomicsaskor_degenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/askorhttps://github.com/genouest/galaxy-tools/tree/master/tools/askor0.2bioconductor-limma3.58.100000000000000000000000000000000000000000000
bamparsebamparseGenerates hit count lists from bam alignments.To updatehttp://artbio.frRNA, Transcriptomicsbamparseartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/bamparsehttps://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse4.1.1pysam0.22.100000000000000000000000000000001000000000000
baredscbaredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2dbaredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data.baredscbaredscbaredSCThe baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data.Data retrieval, Expression correlation analysis, Differential gene expression profilingRNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probabilityUp-to-datehttps://github.com/lldelisle/baredSCTranscriptomics, Visualizationbaredsciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/baredschttps://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc1.1.3baredsc1.1.3Data retrieval, Expression correlation analysis, Differential gene expression profilingRNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability404040400000000000000000000000000000000040071
bctoolsbctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_eventsbctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0Up-to-datehttps://github.com/dmaticzka/bctoolsSequence Analysis, Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools0.2.2bctools0.2.2007000700000000000000000000000000000000077872895
brew3r_rbrew3r_rExtend 3' end of a GTF using another GTF as a templateTo updatehttps://bioconductor.org/packages/release/bioc/html/BREW3R.r.htmlTranscriptomics, RNAbrew3r_riuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_rhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r1.0.210001000000000000000000000000000000000000000
cell-types-analysisct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvalsTools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysisTo updateTranscriptomics, RNA, Statisticssuite_cell_types_analysisebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis1.1.1cell-types-analysis0.1.1100600060000000000000000000000000000000000026
cemitoolcemitoolGene co-expression network analysis toolcemitoolcemitoolCEMiToolIt unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network.Enrichment analysis, Pathway or network analysisGene expression, Transcriptomics, Microarray experimentTo updatehttps://www.bioconductor.org/packages/release/bioc/html/CEMiTool.htmlTranscriptomics, RNA, Statisticscemitooliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitoolhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool1.18.1bioconductor-cemitool1.26.0Enrichment analysis, Pathway or network analysisTranscriptomics, Microarray experiment101010100000000000000000000000000000000010998
cherricherri_eval, cherri_trainComputational Help Evaluating RNA-RNA interactionscherricherricherriCheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions.Molecular interactions, pathways and networks, Structure analysis, Machine learningTo updatehttps://github.com/BackofenLab/CherriTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cherrihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri0.7cherri0.8Molecular interactions, pathways and networks, Structure analysis, Machine learning0020002000000000000000000000000000000000201207
chirachira_collapse, chira_extract, chira_map, chira_merge, chira_quantifyChimeric Read Annotator for RNA-RNA interactome datachirachiraChiRAChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc.RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNAUp-to-datehttps://github.com/pavanvidem/chiraRNA, Transcriptomics, Sequence Analysischiraiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chirahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/chira1.4.3chira1.4.3Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA505050500000000000000000000000000000000055976418
cite_seq_countcite_seq_countCount CMO/HTOCITE-seq-CountCITE-seq-CountCITE-seq-CountTool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment.RNA-Seq quantificationTranscriptomics, Immunoproteins and antigensUp-to-datehttps://github.com/Hoohm/CITE-seq-CountTranscriptomicscite_seq_countiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_counthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count1.4.4cite-seq-count1.4.4RNA-Seq quantificationTranscriptomics, Immunoproteins and antigens101010100000000000000000000000000000000010118
cosgcosgMarker gene identification for single-cell sequencing data using COSG.Up-to-datehttps://github.com/genecell/COSGTranscriptomics, Sequence Analysiscosgiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg1.0.1cosg1.0.100000000000000000000000000000000000000000000
cpatcpatCoding-potential assessment tool using an alignment-free logistic regression model.Up-to-datehttps://github.com/liguowang/cpatTranscriptomicscpatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/cpathttps://github.com/bgruening/galaxytools/tree/master/tools/cpat3.0.5cpat3.0.511111111000000000000000000000000000000001021134
cpm_tpm_rpkcpm_tpm_rpkGenerate CPM,TPM or RPK from raw countsTo updatehttp://artbio.frTranscriptomicscpm_tpm_rpkartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpkhttps://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk0.5.2r-optparse1.3.200000000000000000000000010000001000000000000
crosscontamination_barcode_filtercrosscontamination_barcode_filterBarcode contamination discovery toolTo updateTranscriptomics, Visualizationcrosscontamination_barcode_filteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter0.3r-ggplot22.2.110101010000000000000000000000000000000001117347
cuffcomparecuffcompareGalaxy wrappers for the Cuffcompare tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffcomparedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcomparehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare2.2.1cufflinks2.2.1111111110000001000000001000000010010000011651130
cuffdiffcuffdiffGalaxy wrappers for the Cuffdiff tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffdiffdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiffhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff2.2.1cufflinks2.2.11010101000010010000000010000000000100000112285831
cufflinkscufflinksGalaxy wrappers for the Cufflinks tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscufflinksdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinkshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks2.2.1cufflinks2.2.111111111000000100000000110010001001000001131932218
cuffmergecuffmergeGalaxy wrappers for the Cuffmerge tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffmergedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmergehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge2.2.1cufflinks2.2.11111111100000010000000000000000100100000111223292
cuffnormcuffnormThe Cuffnorm toolUp-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffnormdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnormhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm2.2.1cufflinks2.2.111101110000000000000000000000001000000001127660
cuffquantcuffquantThe Cuffquant toolUp-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffquantdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquanthttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant2.2.1cufflinks2.2.111101110000000000000000000000001000000001118688
data-hcahca_matrix_downloaderTools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projectsTo updateTranscriptomics, Sequence Analysissuite_human_cell_atlas_toolsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hcav0.0.4+galaxy0hca-matrix-downloader0.0.400100010000000000000000000000000000000001134439
data-scxaretrieve_scxaTools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/homeTo updateTranscriptomics, Sequence Analysissuite_ebi_expression_atlasebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxav0.0.2+galaxy2wget11111111000000000000000000000000000000001199799
decouplerscore_genes_aucell, decoupler_pathway_inference, decoupler_pseudobulkdecoupler - Ensemble of methods to infer biological activitiesTo updatehttps://decoupler-py.readthedocs.io/en/latest/Transcriptomicssuite_decouplerebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler1.4.0+galaxy3decoupler1.5.000100010000000000000000000000000000000000006
deg_annotatedeg_annotateAnnotate DESeq2/DEXSeq output tablesTo updateTranscriptomicsdeg_annotateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate1.1.0bedtools2.31.1111111110000000000000010100100000000000011177419910
deseq2deseq2Differential gene expression analysis based on the negative binomial distributionDESeq2DESeq2DESeq2R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution.Differential gene expression analysis, RNA-Seq analysisRNA-SeqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsdeseq2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq22.11.40.8bioconductor-deseq21.42.0Differential gene expression analysis, RNA-Seq analysisRNA-Seq111111110001001000000011100100010000010011499095752
deseq2_normalizationdeseq2_normalizationNormalizes gene hitlistsTo updatehttp://artbio.frRNA, Transcriptomics, Sequence Analysis, Statisticsdeseq2_normalizationartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalizationhttps://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization1.40.2+galaxy0bioconductor-deseq21.42.000000000000000000000000000010001000000000000
dexseqdexseq, dexseq_count, plotdexseqInference of differential exon usage in RNA-SeqdexseqdexseqDEXSeqThe package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results.Enrichment analysis, Exonic splicing enhancer predictionRNA-SeqUp-to-datehttps://www.bioconductor.org/packages/release/bioc/html/DEXSeq.htmlTranscriptomics, RNA, Statisticsdexseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq1.48.0bioconductor-dexseq1.48.0Enrichment analysis, Exonic splicing enhancer predictionRNA-Seq33333333000000000000000000000000000000003321816064
dropletutilsdropletutils_empty_drops, dropletutils_read_10xDe-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_dropletutilsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils1.0.4dropletutils-scripts0.0.52020202000000000000000000000000000000000202011599
dropletutilsdropletutilsDropletUtils - Utilities for handling droplet-based single-cell RNA-seq datadropletutilsdropletutilsDropletUtilsProvides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix.Loading, Community profilingGene expression, RNA-seq, Sequencing, TranscriptomicsTo updatehttps://bioconductor.org/packages/devel/bioc/html/DropletUtils.htmlTranscriptomics, Sequence Analysisdropletutilsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils1.10.0bioconductor-dropletutils1.22.0Sequencing, Transcriptomics1111111100000000000000000001000000000000111263934
edgeredgerPerform RNA-Seq differential expression analysis using edgeR pipelineedgeredgeredgeRDifferential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE.Differential gene expression analysisGenetics, RNA-Seq, ChIP-seqTo updatehttp://bioconductor.org/packages/release/bioc/html/edgeR.htmlTranscriptomics, RNA, Statisticsedgeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/edgerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/edger3.36.0bioconductor-edger4.0.16Differential gene expression analysisGenetics, RNA-Seq, ChIP-seq11111111000000100000001010010001000000001194518117
egseaegseaThis tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testingegseaegseaEGSEAThis package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing.Gene set testingSystems biologyTo updatehttps://bioconductor.org/packages/release/bioc/html/EGSEA.htmlTranscriptomics, RNA, Statisticsegseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/egseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea1.20.0bioconductor-egsea1.28.0Gene set testingSystems biology1110111000000000000000000000000000000000111772524
fastq_providerfastq_providerRetrieval and download of FASTQ files from ENA and other repositories such as HCA.To updatehttps://github.com/ebi-gene-expression-group/atlas-fastq-providerData Source, RNA, Transcriptomicsatlas_fastq_providerebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_providerhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider0.4.4atlas-fastq-provider0.4.700000000000000000000000000000000000000000000
fastq_utilsfastq_filter_n, fastq_trim_poly_atSet of tools for handling fastq filesTo updatehttps://github.com/nunofonseca/fastq_utilsTranscriptomics, RNAfastq_utilsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utilshttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils0.25.1+galaxy0fastq_utils0.25.200000000000000000000000000000000000000000000
featurecountsfeaturecountsfeatureCounts counts the number of reads aligned to defined masked regions in a reference genomefeaturecountsfeaturecountsFeatureCountsfeatureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package.Read summarisation, RNA-Seq quantificationRNA-SeqTo updatehttp://bioinf.wehi.edu.au/featureCountsRNA, Transcriptomics, Sequence Analysisfeaturecountsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecountshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts2.0.3subread2.0.6Read summarisation, RNA-Seq quantificationRNA-Seq1111111100000010000000111001000100000100114679696399
fgseafgseaPerform gene set testing using fgseafgseafgseafgseaThe package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction.Gene-set enrichment analysisGeneticsTo updatehttps://bioconductor.org/packages/release/bioc/html/fgsea.htmlVisualization, Transcriptomics, Statisticsfgseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fgseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea1.8.0+galaxy1bioconductor-fgsea1.28.0Gene-set enrichment analysisGenetics1111111100000000000000000000000000000000113075240
garnettgarnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_fileDe-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_garnettebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett0.2.8garnett-cli0.0.5007000700000000000000000000000000000000000327
genomic_super_signaturegenomic_super_signatureInterpretation of RNAseq experiments through robust, efficient comparison to public databasesgenomicsupersignaturegenomicsupersignatureGenomicSuperSignatureGenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases.Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reductionRNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experimentTo updatehttps://github.com/shbrief/GenomicSuperSignatureSequence Analysis, RNA, Transcriptomicsgenomic_super_signatureiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signaturehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature1.2.0bioconductor-genomicsupersignature1.10.0Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reductionRNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment0010001000000000000000000000000000000000101146
gffcomparegffcompareGalaxy wrappers for Geo Pertea's GffCompare package.gffcomparegffcomparegffcompareProgram for comparing, annotating, merging and tracking transcripts in GFF files.Sequence annotationNucleic acids, Sequence analysisUp-to-datehttps://github.com/gpertea/gffcompare/Transcriptomicsgffcompareiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcomparehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare0.12.6gffcompare0.12.6Sequence annotationNucleic acids, Sequence analysis1111111100000000000000100000000000000000113813477
gsc_filter_cellsfilter_cellsFilter single cell RNAseq data on libray depth and number of detected genesTo updatehttp://artbio.frTranscriptomicsgsc_filter_cellsartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cellshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells4.3.1+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_filter_genesfilter_genesFilter genes that are detected in less than a fraction of libraries in single cell RNAseq dataTo updatehttp://artbio.frTranscriptomicsgsc_filter_genesartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_geneshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes4.3.1+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_gene_expression_correlationssingle_cell_gene_expression_correlationsCompute single-cell paire-wise gene expressions correlationsTo updatehttp://artbio.frTranscriptomicsgsc_gene_expression_correlationsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlationshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations4.3.1+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_high_dimensions_visualisationhigh_dimensions_visualisationGenerates PCA, t-SNE and HCPC visualisationTo updatehttp://artbio.frTranscriptomics, Visualizationgsc_high_dimensions_visualisationartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualizationhttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation4.3+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_mannwhitney_demannwhitney_dePerform a mann-whitney differential testing between two sets of gene expression dataTo updatehttp://artbio.frTranscriptomicsgsc_mannwhitney_deartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_dehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de4.1.3+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_scran_normalizescran_normalizeNormalize raw counts using scranTo updatehttp://artbio.frTranscriptomicsgsc_scran_normalizeartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalizehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize1.28.1+galaxy0bioconductor-scran1.30.00010001000000000000000000000000000000000101478
gsc_signature_scoresignature_scoreCompute signature scores from single cell RNAseq dataTo updatehttp://artbio.frTranscriptomicsgsc_signature_scoreartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_scorehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score2.3.9+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
heinzheinz_bum, heinz, heinz_scoring, heinz_visualizationAn algorithm for identification of the optimal scoring subnetwork.heinzheinz, bionetHeinzTool for single-species active module discovery.Pathway or network analysisGenetics, Gene expression, Molecular interactions, pathways and networksTo updatehttps://github.com/ls-cwi/heinzTranscriptomics, Visualization, Statisticsheinziuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/heinzhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz1.0bioconductor-bionet1.62.0Pathway or network analysisGenetics, Gene expression, Molecular interactions, pathways and networks4440444000000000000000000000000000000000442421186
isoformswitchanalyzerisoformswitchanalyzerStatistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms.IsoformSwitchAnalyzeRIsoformSwitchAnalyzeRIsoformSwitchAnalyzeREnables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well.Sequence comparison, Sequence analysisComputational biology, Gene transcriptsTo updatehttps://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.htmlTranscriptomics, RNA, Statisticsisoformswitchanalyzeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer1.20.0bioconductor-isoformswitchanalyzer2.2.0Sequence comparison, Sequence analysisComputational biology, Gene transcripts11111111000000000000000000000000000000001029822
kallistokallisto_pseudo, kallisto_quantkallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment.kallistokallistokallistoA program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment.Gene expression profilingTranscriptomics, RNA-seq, Gene expressionTo updatehttps://pachterlab.github.io/kallisto/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto0.48.0kallisto0.50.1Gene expression profilingTranscriptomics22222222000000000000000220000000000000002229924155
limma_voomlimma_voomPerform RNA-Seq differential expression analysis using limma voom pipelinelimmalimmalimmaData analysis, linear models and differential expression for microarray data.RNA-Seq analysisMolecular biology, GeneticsUp-to-datehttp://bioconductor.org/packages/release/bioc/html/limma.htmlTranscriptomics, RNA, Statisticslimma_voomiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voomhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom3.58.1bioconductor-limma3.58.1RNA-Seq analysisMolecular biology, Genetics111111110000000000000000000000000000000011101220344
masigpromasigproIdentify significantly differential expression profiles in time-course microarray experimentsmasigpromasigpromaSigProRegression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments.Regression analysisGene expression, Molecular genetics, Microarray experiment, RNA-SeqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/maSigPro.htmlTranscriptomics, RNA, Statisticsmasigproiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/masigprohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro1.49.3coreutils8.25Regression analysisGene expression, Microarray experiment, RNA-Seq10101010000000000000000000000000000000001113576
mircountsmircountsGenerates miRNA count lists from read alignments to mirBase.To updatehttp://artbio.frRNA, Transcriptomicsmircountsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/mircountshttps://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts1.6tar01000100000000000000000000000001000000000000
monocle3monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkersDe-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_monocle3ebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle30.1.4monocle3-cli0.0.99090909000000000000000000000000000000000002643266
multigseamultigseaGSEA-based pathway enrichment analysis for multi-omics datamultiGSEAmultiGSEAmultiGSEAA GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration.Gene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small moleculesUp-to-datehttps://bioconductor.org/packages/devel/bioc/html/multiGSEA.htmlTranscriptomics, Proteomics, Statisticsmultigseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multigseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea1.12.0bioconductor-multigsea1.12.0Gene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules001000100000000000000000000000000000000010253
music_deconvolutionmusic_construct_eset, music_inspect_eset, music_manipulate_eset, music_compare, music_deconvolutionMulti-subject Single Cell deconvolution (MuSiC)Up-to-datehttps://github.com/xuranw/MuSiCTranscriptomicsmusicbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/music/https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution0.1.1music-deconvolution0.1.15540554000000000000000000000000000000000502401872
nugen_nudupnugen_nudupMarks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products.nudupnudupNuDupMarks/removes duplicate molecules based on the molecular tagging technology used in Tecan products.Duplication detectionSequencingUp-to-datehttps://github.com/tecangenomics/nudupSAM, Metagenomics, Sequence Analysis, Transcriptomicsnugen_nudupiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nuduphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup2.3.3nudup2.3.3Duplication detectionSequencing00000000000000000000000000000000000000000000
pathifierpathifierpathifierUp-to-datehttps://Transcriptomics, Statisticspathifierartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/pathifierhttps://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier1.40.0bioconductor-pathifier1.40.000100010000000000000000000000000000000001010228
pizzlypizzlyPizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples.To updatehttps://github.com/pmelsted/pizzly/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly0.37.3.1pizzly0.37.310101010000000000000000000000000000000001116208
psiclasspsiclassPsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples.psiclasspsiclassUp-to-datehttps://github.com/splicebox/PsiCLASSTranscriptomicspsiclassiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclasshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass1.0.3psiclass1.0.3001000100000000000000000000000000000000010115
qualimapqualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseqqualimapqualimapQualiMapPlatform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data.Sequencing quality controlData quality managementTo updatehttp://qualimap.bioinfo.cipf.es/Sequence Analysis, Transcriptomics, SAMqualimapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap2.2.2dqualimap2.3Sequencing quality controlData quality management4441444100000000000000004001000100000000441328664470
raceidraceid_clustering, raceid_filtnormconf, raceid_inspectclusters, raceid_inspecttrajectory, raceid_trajectoryRaceID3, StemID2, FateID - scRNA analysisTo updatehttps://github.com/dgrun/RaceID3_StemID2_package/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid0.2.3r-raceid0.1.3555155510000000000000000000000000000000055824569
repenrichedger-repenrich, repenrichRepeat element profilingTo updatehttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrichTranscriptomicsrepenrichartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrichhttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2.31.102000200000000000000000000000002000000000000
repenrich2edger-repenrich2, repenrich2Repeat element profiling using bowtie2 alignerTo updatehttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2Transcriptomicsrepenrich2artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich22.31.100000000000000000000000000000002000000000000
rgrnastarrna_star, rna_starsoloRNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapperstarstarSTARUltrafast universal RNA-seq data alignerSequence alignmentRNA-Seq, TranscriptomicsTo updatehttps://github.com/alexdobin/STARNext Gen Mappers, Transcriptomicsrgrnastariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastarhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar2.7.11astar2.7.11bSequence alignmentRNA-Seq, Transcriptomics2222222200010000000000111002000100000100224015425658
ribowaltzribowaltz_process, ribowaltz_plotCalculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling datariboWaltzriboWaltzriboWaltzriboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data.Computational biologyTo updatehttps://github.com/LabTranslationalArchitectomics/riboWaltzTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltzhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz1.2.0ribowaltz2.0Computational biology00200020000000000000000000000000000000002014161
rsemextract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtietranscript quantification from RNA-Seq dataTo updatehttps://github.com/deweylab/RSEMTranscriptomics, RNArsemartbiohttps://github.com/artbio/tools-artbio/tree/master/tools/rsemhttps://github.com/ARTbio/tools-artbio/tree/main/tools/rsemrsem1.3.300100010000000000000000000000004000000001167377
rseqcrseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tinan RNA-seq quality control packagerseqcrseqcRSeQCProvides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc.Data handlingSequencingUp-to-datehttps://code.google.com/p/rseqc/Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualizationrseqcnileshhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc5.0.3rseqc5.0.3Data handlingSequencing2222222222222222000000000000000000022000220000000022223206133498
ruvseqruvseqRemove Unwanted Variation from RNA-Seq DataruvseqruvseqRUVSeqThis package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples.Differential gene expression analysisGene expression, RNA-seqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsruvseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq1.26.0bioconductor-ruvseq1.36.0Differential gene expression analysisGene expression101010100000000000000000000000010000000011761236
salmonalevin, salmon, salmonquantmergeSalmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data.salmonsalmonSalmonA tool for transcript expression quantification from RNA-seq dataSequence composition calculation, RNA-Seq quantification, Gene expression analysisRNA-Seq, Gene expression, TranscriptomicsTo updatehttps://github.com/COMBINE-lab/salmonSequence Analysis, RNA, Transcriptomicsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/salmonhttps://github.com/bgruening/galaxytools/tree/master/tools/salmon1.10.1salmon1.10.3Sequence composition calculation, RNA-Seq quantification, Gene expression analysisRNA-Seq, Transcriptomics21312131000000000000000210010001000000003396961937
sashimi_plotsashimi_plotGenerates a sashimi plot from bam files.To updatehttp://artbio.frRNA, Transcriptomics, Graphics, Visualizationsashimi_plotartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plothttps://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot0.1.1python00000000000000000000000010000000000000000000
sc3sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepareDe-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_sc3ebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc31.8.0sc3-scripts0.0.600700070000000000000000000000000000000000019
scanpyscanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confoundersScanpy – Single-Cell Analysis in PythonscanpyscanpySCANPYScalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells.Differential gene expression analysisGene expression, Cell biology, GeneticsTo updatehttps://scanpy.readthedocs.ioTranscriptomics, Sequence Analysisscanpyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy1.9.6scanpy1.7.2Differential gene expression analysisGene expression, Cell biology, Genetics66606660000000000000000000000000000000006676651978
scanpyanndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_datascanpy-scripts, command-line wrapper scripts around Scanpy.To updatehttps://scanpy.readthedocs.ioTranscriptomics, Sequence Analysis, RNAscanpy_scriptsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpyhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy1.9.3scanpy-scripts1.9.30122272702227270000000000000000000000000000000001413218539356
scaterscater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_resultsDe-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scaterebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater1.10.0scater-scripts0.0.501600160000000000000000000000000000000002216387
scaterscater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsneScater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization.scaterscaterscaterPre-processing, quality control, normalization and visualization of single-cell RNA-seq data.Read pre-processing, Sequencing quality control, Sequence visualisationRNA-seq, Quality affairs, Molecular geneticsTo updatehttp://bioconductor.org/packages/scater/Transcriptomics, RNA, Visualizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scaterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scater1.22.0bioconductor-scater1.30.1Read pre-processing, Sequence visualisationQuality affairs, Molecular genetics055005500000000000000000000000000000000055771365
sccafrun_sccaf, sccaf_asses, sccaf_asses_merger, sccaf_regress_outSCCAF: Single Cell Clustering Assessment Framework.To updatehttps://github.com/sccaf/sccafTranscriptomicsSCCAFebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccafhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf0.0.9sccaf0.0.100040004000000000000000000000000000000000002110
sceasysceasy_convertConverter between difference single-cell formatsUp-to-datehttps://github.com/cellgeni/sceasy/Transcriptomicssceasy_convertiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy0.0.7r-sceasy0.0.710101010000000000000000000000001000000000090721
sceasysceasy_convertConvert scRNA data object between popular formatsTo updateTranscriptomicssceasyebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy0.0.5r-sceasy0.0.710101010000000000000000000000001000000000090721
schicexplorerschicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrolscHiCExplorer: Set of programs to process, analyze and visualize scHi-C data.To updatehttps://github.com/joachimwolff/schicexplorerSequence Analysis, Transcriptomics, Visualizationschicexploreriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer4schicexplorer7001600016000000000000000000000000000000000161623779
scmapscmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_featuresDe-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scmapebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap1.6.4scmap-cli0.1.00070007000000000000000000000000000000000101383
scpipescpipeA flexible preprocessing pipeline for single-cell RNA-sequencing datascpipescpipescPipeA preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols.Genome annotation, Validation, Alignment, VisualisationGene expression, RNA-Seq, SequencingTo updatehttp://bioconductor.org/packages/release/bioc/html/scPipe.htmlTranscriptomics, RNA, Statisticsscpipeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe1.0.0+galaxy2bioconductor-scpipe2.2.0Genome annotation, Validation, Alignment, VisualisationGene expression, RNA-Seq10101010000000000000000000000000000000001111628
scpredscpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_modelDe-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scpredebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred1.0.2scpred-cli0.1.0004000400000000000000000000000000000000000425
seuratseuratA toolkit for quality control, analysis, and exploration of single cell RNA sequencing dataTo updatehttps://github.com/satijalab/seuratTranscriptomics, RNA, Statisticsseuratiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seurathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat4.3.0.1r-seurat3.0.2111111110000000000000000000000010000000011661543
seuratseurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_featuresDe-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1Up-to-datehttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/Transcriptomics, RNA, Statistics, Sequence Analysissuite_seuratebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat4.0.0seurat-scripts4.0.0001411001411000000000000000000000001900000000001811966
slamdunkalleyoop, slamdunkSlamdunk maps and quantifies SLAMseq readsUp-to-datehttp://t-neumann.github.io/slamdunkRNA, Transcriptomics, Sequence Analysis, Next Gen Mappersslamdunkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk0.4.3slamdunk0.4.32020202000000000000000000000000000000000222361
sleuthsleuthSleuth is a program for differential analysis of RNA-Seq data.sleuthsleuthsleuthA statistical model and software application for RNA-seq differential expression analysis.Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculationRNA-seq, Gene expression, Statistics and probabilityUp-to-datehttps://github.com/pachterlab/sleuthTranscriptomics, RNA, Statisticssleuthiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuthhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth0.30.1r-sleuth0.30.1Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculationGene expression, Statistics and probability001000100000000000000000000000000000000010864
star_fusionstar_fusionSTAR Fusion detects fusion genes in RNA-Seq data after running RNA-STARTo updateSequence Analysis, Transcriptomicsstar_fusioniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusionhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion0.5.4-3+galaxy1star-fusion1.13.0111011100000000000000010000000000000000011351212
stringtiestringtie, stringtie_mergeStringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts.stringtiestringtieStringTieFast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus.Transcriptome assembly, RNA-Seq analysisTranscriptomics, RNA-seqUp-to-datehttp://ccb.jhu.edu/software/stringtie/Transcriptomicsstringtieiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtiehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie2.2.3stringtie2.2.3Transcriptome assembly, RNA-Seq analysisTranscriptomics2222222200000000000000200000000000000200222165167659
tophat_fusion_posttophat_fusion_postWrapper for Tophat-Fusion post stepTo updateTranscriptomicstophat_fusion_postdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_posthttps://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post0.1blast+01100110000000000000000000000000000000001115216
transdecodertransdecoderTransDecoder finds coding regions within transcriptsTransDecoderTransDecoderTransDecoderTransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks.Coding region prediction, de Novo sequencing, De-novo assemblyGenomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencingTo updatehttps://transdecoder.github.io/Transcriptomics, RNAtransdecoderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder5.5.0transdecoder5.7.1Coding region prediction, de Novo sequencing, De-novo assemblyGenomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing1111111100000000000010001000000000000000113485468
trinitytrinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_statsTrinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseqtrinitytrinityTrinityTrinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads.Transcriptome assemblyTranscriptomics, Gene expression, Gene transcriptsUp-to-datehttps://github.com/trinityrnaseq/trinityrnaseqTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trinityhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity2.15.1trinity2.15.1Transcriptome assemblyTranscriptomics, Gene transcripts913131391313130000000000000012100000011001000001312176231951
trinotatetrinotateTrinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes.trinotatetrinotateTrinotateComprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms.Gene functional annotationGene expression, TranscriptomicsTo updatehttps://trinotate.github.io/Transcriptomics, RNAtrinotateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate3.2.2trinotate4.0.2Gene functional annotationTranscriptomics1110111000000000000000001000000000000000111511796
tximporttximportWrapper for the Bioconductor package tximporttximporttximporttximportAn R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages.Pathway or network analysis, Formatting, RNA-Seq analysisTranscriptomics, Gene transcripts, WorkflowsTo updatehttp://bioconductor.org/packages/tximport/Transcriptomicstximportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tximporthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport1.22.0bioconductor-tximport1.30.0Pathway or network analysis, Formatting, RNA-Seq analysisTranscriptomics, Gene transcripts, Workflows101010100000000000000000000000000000000011881408
ucsc-cell-browserucsc_cell_browserPython pipeline and Javascript scatter plot library for single-cell datasetsTo updatehttps://cells.ucsc.edu/Transcriptomicsucsc_cell_browserebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.ymlhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser1.0.0+galaxy1ucsc-cell-browser1.2.600100010000000000000000000000000000000001178941
umi_toolsumi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelistUMI-tools extract - Extract UMIs from fastqumi-toolsumi-toolsUMI-toolsTools for handling Unique Molecular Identifiers in NGS data sets.Sequencing quality controlNGS, Sequence sites, features and motifs, Quality affairsTo updatehttps://github.com/CGATOxford/UMI-toolsSequence Analysis, Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_toolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools1.1.2umi_tools1.1.5Sequencing quality controlSequence sites, features and motifs, Quality affairs55555555000000000000000010000005000000005537961618
velocytovelocyto_cliVelocyto is a library for the analysis of RNA velocity.Up-to-datehttp://velocyto.org/Transcriptomicsvelocytoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velocytohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto0.17.17velocyto.py0.17.1710101010000000000000000000000000000000001002
volcanoplotvolcanoplotTool to create a Volcano PlotTo updatehttps://ggplot2.tidyverse.org/Visualization, Transcriptomics, Statisticsvolcanoplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot0.0.6r-ggplot22.2.1111111110000000000000010100000010000000011174930946
+ +
\ No newline at end of file diff --git a/results/spoc/tools.tsv b/results/spoc/tools.tsv new file mode 100644 index 00000000..b1844867 --- /dev/null +++ b/results/spoc/tools.tsv @@ -0,0 +1,100 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on ANASTASIA Tools available on APOSTL Tools available on ARGs-OAP Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CorGAT Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on Protologger Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +aegean aegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parseval AEGeAn toolkit wrappers gaeval gaeval GAEVAL Gene Annotation EVAluation. Sequence annotation Sequence analysis, Gene structure Up-to-date https://github.com/BrendelGroup/AEGeAn Transcriptomics, Sequence Analysis aegean iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aegean https://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean 0.16.0 aegean 0.16.0 Sequence annotation Sequence analysis, Gene structure 1 4 4 4 1 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 47 168 False +anndata anndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loom Import, Export, Inspect and Manipulate Anndata and Loom objects To update https://anndata.readthedocs.io Transcriptomics, Sequence Analysis anndata iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata 0.10.3 anndata 0.6.22.post1 5 4 5 0 5 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 625 35620 False +arriba arriba, arriba_draw_fusions, arriba_get_filters Arriba detects fusion genes in RNA-Seq data after running RNA-STAR Up-to-date https://github.com/suhrig/arriba Sequence Analysis, Transcriptomics arriba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba https://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba 2.4.0 arriba 2.4.0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 38 3528 False +askor askor_de AskoR links EdgeR and AskOmics To update https://github.com/askomics/askoR Transcriptomics askor_de genouest https://github.com/genouest/galaxy-tools/tree/master/tools/askor https://github.com/genouest/galaxy-tools/tree/master/tools/askor 0.2 bioconductor-limma 3.58.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bamparse bamparse Generates hit count lists from bam alignments. To update http://artbio.fr RNA, Transcriptomics bamparse artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse 4.1.1 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +baredsc baredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2d baredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. baredsc baredsc baredSC The baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability Up-to-date https://github.com/lldelisle/baredSC Transcriptomics, Visualization baredsc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/baredsc https://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc 1.1.3 baredsc 1.1.3 Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability 4 0 4 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 71 False +bctools bctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_events bctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0 Up-to-date https://github.com/dmaticzka/bctools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools 0.2.2 bctools 0.2.2 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 87 2895 False +brew3r_r brew3r_r Extend 3' end of a GTF using another GTF as a template To update https://bioconductor.org/packages/release/bioc/html/BREW3R.r.html Transcriptomics, RNA brew3r_r iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_r https://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r 1.0.2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cell-types-analysis ct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvals Tools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysis To update Transcriptomics, RNA, Statistics suite_cell_types_analysis ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis 1.1.1 cell-types-analysis 0.1.11 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 6 False +cemitool cemitool Gene co-expression network analysis tool cemitool cemitool CEMiTool It unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network. Enrichment analysis, Pathway or network analysis Gene expression, Transcriptomics, Microarray experiment To update https://www.bioconductor.org/packages/release/bioc/html/CEMiTool.html Transcriptomics, RNA, Statistics cemitool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool https://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool 1.18.1 bioconductor-cemitool 1.26.0 Enrichment analysis, Pathway or network analysis Transcriptomics, Microarray experiment 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 9 98 False +cherri cherri_eval, cherri_train Computational Help Evaluating RNA-RNA interactions cherri cherri cherri CheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions. Molecular interactions, pathways and networks, Structure analysis, Machine learning To update https://github.com/BackofenLab/Cherri Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cherri https://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri 0.7 cherri 0.8 Molecular interactions, pathways and networks, Structure analysis, Machine learning 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 207 False +chira chira_collapse, chira_extract, chira_map, chira_merge, chira_quantify Chimeric Read Annotator for RNA-RNA interactome data chira chira ChiRA ChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc. RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA Up-to-date https://github.com/pavanvidem/chira RNA, Transcriptomics, Sequence Analysis chira iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chira https://github.com/galaxyproject/tools-iuc/tree/main/tools/chira 1.4.3 chira 1.4.3 Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA 5 0 5 0 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 97 6418 False +cite_seq_count cite_seq_count Count CMO/HTO CITE-seq-Count CITE-seq-Count CITE-seq-Count Tool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment. RNA-Seq quantification Transcriptomics, Immunoproteins and antigens Up-to-date https://github.com/Hoohm/CITE-seq-Count Transcriptomics cite_seq_count iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count 1.4.4 cite-seq-count 1.4.4 RNA-Seq quantification Transcriptomics, Immunoproteins and antigens 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 18 False +cosg cosg Marker gene identification for single-cell sequencing data using COSG. Up-to-date https://github.com/genecell/COSG Transcriptomics, Sequence Analysis cosg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg 1.0.1 cosg 1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cpat cpat Coding-potential assessment tool using an alignment-free logistic regression model. Up-to-date https://github.com/liguowang/cpat Transcriptomics cpat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/cpat https://github.com/bgruening/galaxytools/tree/master/tools/cpat 3.0.5 cpat 3.0.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 21 134 False +cpm_tpm_rpk cpm_tpm_rpk Generate CPM,TPM or RPK from raw counts To update http://artbio.fr Transcriptomics cpm_tpm_rpk artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk 0.5.2 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +crosscontamination_barcode_filter crosscontamination_barcode_filter Barcode contamination discovery tool To update Transcriptomics, Visualization crosscontamination_barcode_filter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filter https://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter 0.3 r-ggplot2 2.2.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 17 347 False +cuffcompare cuffcompare Galaxy wrappers for the Cuffcompare tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffcompare devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 65 1130 False +cuffdiff cuffdiff Galaxy wrappers for the Cuffdiff tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffdiff devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiff https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff 2.2.1 cufflinks 2.2.1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 228 5831 False +cufflinks cufflinks Galaxy wrappers for the Cufflinks tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cufflinks devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinks https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 319 32218 False +cuffmerge cuffmerge Galaxy wrappers for the Cuffmerge tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffmerge devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmerge https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 122 3292 False +cuffnorm cuffnorm The Cuffnorm tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffnorm devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnorm https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 27 660 False +cuffquant cuffquant The Cuffquant tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffquant devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquant https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 18 688 False +data-hca hca_matrix_downloader Tools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projects To update Transcriptomics, Sequence Analysis suite_human_cell_atlas_tools ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hca v0.0.4+galaxy0 hca-matrix-downloader 0.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 34 439 False +data-scxa retrieve_scxa Tools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/home To update Transcriptomics, Sequence Analysis suite_ebi_expression_atlas ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxa v0.0.2+galaxy2 wget 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 99 799 False +decoupler score_genes_aucell, decoupler_pathway_inference, decoupler_pseudobulk decoupler - Ensemble of methods to infer biological activities To update https://decoupler-py.readthedocs.io/en/latest/ Transcriptomics suite_decoupler ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler 1.4.0+galaxy3 decoupler 1.5.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 False +deg_annotate deg_annotate Annotate DESeq2/DEXSeq output tables To update Transcriptomics deg_annotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate 1.1.0 bedtools 2.31.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1774 19910 False +deseq2 deseq2 Differential gene expression analysis based on the negative binomial distribution DESeq2 DESeq2 DESeq2 R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution. Differential gene expression analysis, RNA-Seq analysis RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics deseq2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq2 2.11.40.8 bioconductor-deseq2 1.42.0 Differential gene expression analysis, RNA-Seq analysis RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 4990 95752 False +deseq2_normalization deseq2_normalization Normalizes gene hitlists To update http://artbio.fr RNA, Transcriptomics, Sequence Analysis, Statistics deseq2_normalization artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization 1.40.2+galaxy0 bioconductor-deseq2 1.42.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +dexseq dexseq, dexseq_count, plotdexseq Inference of differential exon usage in RNA-Seq dexseq dexseq DEXSeq The package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results. Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq Up-to-date https://www.bioconductor.org/packages/release/bioc/html/DEXSeq.html Transcriptomics, RNA, Statistics dexseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq 1.48.0 bioconductor-dexseq 1.48.0 Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 218 16064 False +dropletutils dropletutils_empty_drops, dropletutils_read_10x De-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_dropletutils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils 1.0.4 dropletutils-scripts 0.0.5 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 201 1599 False +dropletutils dropletutils DropletUtils - Utilities for handling droplet-based single-cell RNA-seq data dropletutils dropletutils DropletUtils Provides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix. Loading, Community profiling Gene expression, RNA-seq, Sequencing, Transcriptomics To update https://bioconductor.org/packages/devel/bioc/html/DropletUtils.html Transcriptomics, Sequence Analysis dropletutils iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils 1.10.0 bioconductor-dropletutils 1.22.0 Sequencing, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 126 3934 False +edger edger Perform RNA-Seq differential expression analysis using edgeR pipeline edger edger edgeR Differential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE. Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq To update http://bioconductor.org/packages/release/bioc/html/edgeR.html Transcriptomics, RNA, Statistics edger iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger https://github.com/galaxyproject/tools-iuc/tree/main/tools/edger 3.36.0 bioconductor-edger 4.0.16 Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 945 18117 False +egsea egsea This tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testing egsea egsea EGSEA This package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing. Gene set testing Systems biology To update https://bioconductor.org/packages/release/bioc/html/EGSEA.html Transcriptomics, RNA, Statistics egsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea 1.20.0 bioconductor-egsea 1.28.0 Gene set testing Systems biology 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 177 2524 False +fastq_provider fastq_provider Retrieval and download of FASTQ files from ENA and other repositories such as HCA. To update https://github.com/ebi-gene-expression-group/atlas-fastq-provider Data Source, RNA, Transcriptomics atlas_fastq_provider ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_provider https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider 0.4.4 atlas-fastq-provider 0.4.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_utils fastq_filter_n, fastq_trim_poly_at Set of tools for handling fastq files To update https://github.com/nunofonseca/fastq_utils Transcriptomics, RNA fastq_utils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utils https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils 0.25.1+galaxy0 fastq_utils 0.25.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +featurecounts featurecounts featureCounts counts the number of reads aligned to defined masked regions in a reference genome featurecounts featurecounts FeatureCounts featureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package. Read summarisation, RNA-Seq quantification RNA-Seq To update http://bioinf.wehi.edu.au/featureCounts RNA, Transcriptomics, Sequence Analysis featurecounts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts https://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts 2.0.3 subread 2.0.6 Read summarisation, RNA-Seq quantification RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 4679 696399 False +fgsea fgsea Perform gene set testing using fgsea fgsea fgsea fgsea The package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction. Gene-set enrichment analysis Genetics To update https://bioconductor.org/packages/release/bioc/html/fgsea.html Visualization, Transcriptomics, Statistics fgsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fgsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea 1.8.0+galaxy1 bioconductor-fgsea 1.28.0 Gene-set enrichment analysis Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 307 5240 False +garnett garnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_file De-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_garnett ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett 0.2.8 garnett-cli 0.0.5 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 27 False +genomic_super_signature genomic_super_signature Interpretation of RNAseq experiments through robust, efficient comparison to public databases genomicsupersignature genomicsupersignature GenomicSuperSignature GenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases. Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment To update https://github.com/shbrief/GenomicSuperSignature Sequence Analysis, RNA, Transcriptomics genomic_super_signature iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signature https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature 1.2.0 bioconductor-genomicsupersignature 1.10.0 Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 11 46 False +gffcompare gffcompare Galaxy wrappers for Geo Pertea's GffCompare package. gffcompare gffcompare gffcompare Program for comparing, annotating, merging and tracking transcripts in GFF files. Sequence annotation Nucleic acids, Sequence analysis Up-to-date https://github.com/gpertea/gffcompare/ Transcriptomics gffcompare iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare 0.12.6 gffcompare 0.12.6 Sequence annotation Nucleic acids, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 381 3477 False +gsc_filter_cells filter_cells Filter single cell RNAseq data on libray depth and number of detected genes To update http://artbio.fr Transcriptomics gsc_filter_cells artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_filter_genes filter_genes Filter genes that are detected in less than a fraction of libraries in single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_filter_genes artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_gene_expression_correlations single_cell_gene_expression_correlations Compute single-cell paire-wise gene expressions correlations To update http://artbio.fr Transcriptomics gsc_gene_expression_correlations artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlations https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_high_dimensions_visualisation high_dimensions_visualisation Generates PCA, t-SNE and HCPC visualisation To update http://artbio.fr Transcriptomics, Visualization gsc_high_dimensions_visualisation artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualization https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation 4.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_mannwhitney_de mannwhitney_de Perform a mann-whitney differential testing between two sets of gene expression data To update http://artbio.fr Transcriptomics gsc_mannwhitney_de artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de 4.1.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_scran_normalize scran_normalize Normalize raw counts using scran To update http://artbio.fr Transcriptomics gsc_scran_normalize artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize 1.28.1+galaxy0 bioconductor-scran 1.30.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 14 78 False +gsc_signature_score signature_score Compute signature scores from single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_signature_score artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score 2.3.9+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +heinz heinz_bum, heinz, heinz_scoring, heinz_visualization An algorithm for identification of the optimal scoring subnetwork. heinz heinz, bionet Heinz Tool for single-species active module discovery. Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks To update https://github.com/ls-cwi/heinz Transcriptomics, Visualization, Statistics heinz iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz https://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz 1.0 bioconductor-bionet 1.62.0 Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 242 1186 False +isoformswitchanalyzer isoformswitchanalyzer Statistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms. IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR Enables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well. Sequence comparison, Sequence analysis Computational biology, Gene transcripts To update https://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.html Transcriptomics, RNA, Statistics isoformswitchanalyzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer 1.20.0 bioconductor-isoformswitchanalyzer 2.2.0 Sequence comparison, Sequence analysis Computational biology, Gene transcripts 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 29 822 False +kallisto kallisto_pseudo, kallisto_quant kallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment. kallisto kallisto kallisto A program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment. Gene expression profiling Transcriptomics, RNA-seq, Gene expression To update https://pachterlab.github.io/kallisto/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto 0.48.0 kallisto 0.50.1 Gene expression profiling Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 299 24155 False +limma_voom limma_voom Perform RNA-Seq differential expression analysis using limma voom pipeline limma limma limma Data analysis, linear models and differential expression for microarray data. RNA-Seq analysis Molecular biology, Genetics Up-to-date http://bioconductor.org/packages/release/bioc/html/limma.html Transcriptomics, RNA, Statistics limma_voom iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom https://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom 3.58.1 bioconductor-limma 3.58.1 RNA-Seq analysis Molecular biology, Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1012 20344 False +masigpro masigpro Identify significantly differential expression profiles in time-course microarray experiments masigpro masigpro maSigPro Regression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments. Regression analysis Gene expression, Molecular genetics, Microarray experiment, RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/maSigPro.html Transcriptomics, RNA, Statistics masigpro iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/masigpro https://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro 1.49.3 coreutils 8.25 Regression analysis Gene expression, Microarray experiment, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 13 576 False +mircounts mircounts Generates miRNA count lists from read alignments to mirBase. To update http://artbio.fr RNA, Transcriptomics mircounts artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts https://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts 1.6 tar 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +monocle3 monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkers De-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_monocle3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle3 0.1.4 monocle3-cli 0.0.9 9 0 9 0 9 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 264 3266 False +multigsea multigsea GSEA-based pathway enrichment analysis for multi-omics data multiGSEA multiGSEA multiGSEA A GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration. Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules Up-to-date https://bioconductor.org/packages/devel/bioc/html/multiGSEA.html Transcriptomics, Proteomics, Statistics multigsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea 1.12.0 bioconductor-multigsea 1.12.0 Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 53 False +music_deconvolution music_construct_eset, music_inspect_eset, music_manipulate_eset, music_compare, music_deconvolution Multi-subject Single Cell deconvolution (MuSiC) Up-to-date https://github.com/xuranw/MuSiC Transcriptomics music bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/music/ https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution 0.1.1 music-deconvolution 0.1.1 5 5 4 0 5 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 240 1872 False +nugen_nudup nugen_nudup Marks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products. nudup nudup NuDup Marks/removes duplicate molecules based on the molecular tagging technology used in Tecan products. Duplication detection Sequencing Up-to-date https://github.com/tecangenomics/nudup SAM, Metagenomics, Sequence Analysis, Transcriptomics nugen_nudup iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup https://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup 2.3.3 nudup 2.3.3 Duplication detection Sequencing 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pathifier pathifier pathifier Up-to-date https:// Transcriptomics, Statistics pathifier artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier 1.40.0 bioconductor-pathifier 1.40.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 10 228 False +pizzly pizzly Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. To update https://github.com/pmelsted/pizzly/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly 0.37.3.1 pizzly 0.37.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 16 208 False +psiclass psiclass PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples. psiclass psiclass Up-to-date https://github.com/splicebox/PsiCLASS Transcriptomics psiclass iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclass https://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass 1.0.3 psiclass 1.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 15 False +qualimap qualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseq qualimap qualimap QualiMap Platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data. Sequencing quality control Data quality management To update http://qualimap.bioinfo.cipf.es/ Sequence Analysis, Transcriptomics, SAM qualimap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap https://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap 2.2.2d qualimap 2.3 Sequencing quality control Data quality management 4 4 4 1 4 4 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 4 4 1328 664470 False +raceid raceid_clustering, raceid_filtnormconf, raceid_inspectclusters, raceid_inspecttrajectory, raceid_trajectory RaceID3, StemID2, FateID - scRNA analysis To update https://github.com/dgrun/RaceID3_StemID2_package/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid 0.2.3 r-raceid 0.1.3 5 5 5 1 5 5 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 82 4569 False +repenrich edger-repenrich, repenrich Repeat element profiling To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich Transcriptomics repenrich artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich 2.31.1 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 False +repenrich2 edger-repenrich2, repenrich2 Repeat element profiling using bowtie2 aligner To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 Transcriptomics repenrich2 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 2.31.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 False +rgrnastar rna_star, rna_starsolo RNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapper star star STAR Ultrafast universal RNA-seq data aligner Sequence alignment RNA-Seq, Transcriptomics To update https://github.com/alexdobin/STAR Next Gen Mappers, Transcriptomics rgrnastar iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar https://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar 2.7.11a star 2.7.11b Sequence alignment RNA-Seq, Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 2 0 0 0 1 0 0 0 0 0 1 0 0 2 2 4015 425658 False +ribowaltz ribowaltz_process, ribowaltz_plot Calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data riboWaltz riboWaltz riboWaltz riboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data. Computational biology To update https://github.com/LabTranslationalArchitectomics/riboWaltz Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltz https://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz 1.2.0 ribowaltz 2.0 Computational biology 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 14 161 False +rsem extract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtie transcript quantification from RNA-Seq data To update https://github.com/deweylab/RSEM Transcriptomics, RNA rsem artbio https://github.com/artbio/tools-artbio/tree/master/tools/rsem https://github.com/ARTbio/tools-artbio/tree/main/tools/rsem rsem 1.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 1 1 67 377 False +rseqc rseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tin an RNA-seq quality control package rseqc rseqc RSeQC Provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. Data handling Sequencing Up-to-date https://code.google.com/p/rseqc/ Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualization rseqc nilesh https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc 5.0.3 rseqc 5.0.3 Data handling Sequencing 22 22 22 22 22 22 22 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 0 22 22 3206 133498 False +ruvseq ruvseq Remove Unwanted Variation from RNA-Seq Data ruvseq ruvseq RUVSeq This package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples. Differential gene expression analysis Gene expression, RNA-seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics ruvseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq 1.26.0 bioconductor-ruvseq 1.36.0 Differential gene expression analysis Gene expression 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 76 1236 False +salmon alevin, salmon, salmonquantmerge Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data. salmon salmon Salmon A tool for transcript expression quantification from RNA-seq data Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Gene expression, Transcriptomics To update https://github.com/COMBINE-lab/salmon Sequence Analysis, RNA, Transcriptomics bgruening https://github.com/bgruening/galaxytools/tree/master/tools/salmon https://github.com/bgruening/galaxytools/tree/master/tools/salmon 1.10.1 salmon 1.10.3 Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Transcriptomics 2 1 3 1 2 1 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 3 3 969 61937 False +sashimi_plot sashimi_plot Generates a sashimi plot from bam files. To update http://artbio.fr RNA, Transcriptomics, Graphics, Visualization sashimi_plot artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plot https://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot 0.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sc3 sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepare De-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_sc3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc3 1.8.0 sc3-scripts 0.0.6 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 False +scanpy scanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confounders Scanpy – Single-Cell Analysis in Python scanpy scanpy SCANPY Scalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. Differential gene expression analysis Gene expression, Cell biology, Genetics To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis scanpy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy 1.9.6 scanpy 1.7.2 Differential gene expression analysis Gene expression, Cell biology, Genetics 6 6 6 0 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 766 51978 False +scanpy anndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_data scanpy-scripts, command-line wrapper scripts around Scanpy. To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis, RNA scanpy_scripts ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpy https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy 1.9.3 scanpy-scripts 1.9.301 22 27 27 0 22 27 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 13 2185 39356 False +scater scater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_results De-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scater ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater 1.10.0 scater-scripts 0.0.5 0 1 6 0 0 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 16 387 False +scater scater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsne Scater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization. scater scater scater Pre-processing, quality control, normalization and visualization of single-cell RNA-seq data. Read pre-processing, Sequencing quality control, Sequence visualisation RNA-seq, Quality affairs, Molecular genetics To update http://bioconductor.org/packages/scater/ Transcriptomics, RNA, Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scater https://github.com/galaxyproject/tools-iuc/tree/main/tools/scater 1.22.0 bioconductor-scater 1.30.1 Read pre-processing, Sequence visualisation Quality affairs, Molecular genetics 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 77 1365 False +sccaf run_sccaf, sccaf_asses, sccaf_asses_merger, sccaf_regress_out SCCAF: Single Cell Clustering Assessment Framework. To update https://github.com/sccaf/sccaf Transcriptomics SCCAF ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccaf https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf 0.0.9 sccaf 0.0.10 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 110 False +sceasy sceasy_convert Converter between difference single-cell formats Up-to-date https://github.com/cellgeni/sceasy/ Transcriptomics sceasy_convert iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy 0.0.7 r-sceasy 0.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 False +sceasy sceasy_convert Convert scRNA data object between popular formats To update Transcriptomics sceasy ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy 0.0.5 r-sceasy 0.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 False +schicexplorer schicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrol scHiCExplorer: Set of programs to process, analyze and visualize scHi-C data. To update https://github.com/joachimwolff/schicexplorer Sequence Analysis, Transcriptomics, Visualization schicexplorer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorer https://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer 4 schicexplorer 7 0 0 16 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 16 23 779 False +scmap scmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_features De-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scmap ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap 1.6.4 scmap-cli 0.1.0 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 13 83 False +scpipe scpipe A flexible preprocessing pipeline for single-cell RNA-sequencing data scpipe scpipe scPipe A preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols. Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq, Sequencing To update http://bioconductor.org/packages/release/bioc/html/scPipe.html Transcriptomics, RNA, Statistics scpipe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipe https://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe 1.0.0+galaxy2 bioconductor-scpipe 2.2.0 Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 11 628 False +scpred scpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_model De-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scpred ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred 1.0.2 scpred-cli 0.1.0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 False +seurat seurat A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data To update https://github.com/satijalab/seurat Transcriptomics, RNA, Statistics seurat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat https://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat 4.3.0.1 r-seurat 3.0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 66 1543 False +seurat seurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_features De-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1 Up-to-date https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ Transcriptomics, RNA, Statistics, Sequence Analysis suite_seurat ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat 4.0.0 seurat-scripts 4.0.0 0 0 14 11 0 0 14 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 0 0 0 181 1966 False +slamdunk alleyoop, slamdunk Slamdunk maps and quantifies SLAMseq reads Up-to-date http://t-neumann.github.io/slamdunk RNA, Transcriptomics, Sequence Analysis, Next Gen Mappers slamdunk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunk https://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk 0.4.3 slamdunk 0.4.3 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 361 False +sleuth sleuth Sleuth is a program for differential analysis of RNA-Seq data. sleuth sleuth sleuth A statistical model and software application for RNA-seq differential expression analysis. Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation RNA-seq, Gene expression, Statistics and probability Up-to-date https://github.com/pachterlab/sleuth Transcriptomics, RNA, Statistics sleuth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuth https://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth 0.30.1 r-sleuth 0.30.1 Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 8 64 False +star_fusion star_fusion STAR Fusion detects fusion genes in RNA-Seq data after running RNA-STAR To update Sequence Analysis, Transcriptomics star_fusion iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusion https://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion 0.5.4-3+galaxy1 star-fusion 1.13.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 35 1212 False +stringtie stringtie, stringtie_merge StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. stringtie stringtie StringTie Fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus. Transcriptome assembly, RNA-Seq analysis Transcriptomics, RNA-seq Up-to-date http://ccb.jhu.edu/software/stringtie/ Transcriptomics stringtie iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie https://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie 2.2.3 stringtie 2.2.3 Transcriptome assembly, RNA-Seq analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2165 167659 False +tophat_fusion_post tophat_fusion_post Wrapper for Tophat-Fusion post step To update Transcriptomics tophat_fusion_post devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_post https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post 0.1 blast+ 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 15 216 False +transdecoder transdecoder TransDecoder finds coding regions within transcripts TransDecoder TransDecoder TransDecoder TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks. Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing To update https://transdecoder.github.io/ Transcriptomics, RNA transdecoder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoder https://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder 5.5.0 transdecoder 5.7.1 Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 348 5468 False +trinity trinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_stats Trinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseq trinity trinity Trinity Trinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads. Transcriptome assembly Transcriptomics, Gene expression, Gene transcripts Up-to-date https://github.com/trinityrnaseq/trinityrnaseq Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity 2.15.1 trinity 2.15.1 Transcriptome assembly Transcriptomics, Gene transcripts 9 13 13 13 9 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 11 0 0 1 0 0 0 0 0 13 12 1762 31951 False +trinotate trinotate Trinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes. trinotate trinotate Trinotate Comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms. Gene functional annotation Gene expression, Transcriptomics To update https://trinotate.github.io/ Transcriptomics, RNA trinotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate 3.2.2 trinotate 4.0.2 Gene functional annotation Transcriptomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 151 1796 False +tximport tximport Wrapper for the Bioconductor package tximport tximport tximport tximport An R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages. Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows To update http://bioconductor.org/packages/tximport/ Transcriptomics tximport iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tximport https://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport 1.22.0 bioconductor-tximport 1.30.0 Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 88 1408 False +ucsc-cell-browser ucsc_cell_browser Python pipeline and Javascript scatter plot library for single-cell datasets To update https://cells.ucsc.edu/ Transcriptomics ucsc_cell_browser ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser 1.0.0+galaxy1 ucsc-cell-browser 1.2.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 78 941 False +umi_tools umi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelist UMI-tools extract - Extract UMIs from fastq umi-tools umi-tools UMI-tools Tools for handling Unique Molecular Identifiers in NGS data sets. Sequencing quality control NGS, Sequence sites, features and motifs, Quality affairs To update https://github.com/CGATOxford/UMI-tools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools 1.1.2 umi_tools 1.1.5 Sequencing quality control Sequence sites, features and motifs, Quality affairs 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 5 5 379 61618 False +velocyto velocyto_cli Velocyto is a library for the analysis of RNA velocity. Up-to-date http://velocyto.org/ Transcriptomics velocyto iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/velocyto https://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto 0.17.17 velocyto.py 0.17.17 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 False +volcanoplot volcanoplot Tool to create a Volcano Plot To update https://ggplot2.tidyverse.org/ Visualization, Transcriptomics, Statistics volcanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplot https://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot 0.0.6 r-ggplot2 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1749 30946 False diff --git a/results/spoc/tools_filtered_by_ts_categories.tsv b/results/spoc/tools_filtered_by_ts_categories.tsv new file mode 100644 index 00000000..b1844867 --- /dev/null +++ b/results/spoc/tools_filtered_by_ts_categories.tsv @@ -0,0 +1,100 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on ANASTASIA Tools available on APOSTL Tools available on ARGs-OAP Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CorGAT Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on Protologger Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +aegean aegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parseval AEGeAn toolkit wrappers gaeval gaeval GAEVAL Gene Annotation EVAluation. Sequence annotation Sequence analysis, Gene structure Up-to-date https://github.com/BrendelGroup/AEGeAn Transcriptomics, Sequence Analysis aegean iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aegean https://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean 0.16.0 aegean 0.16.0 Sequence annotation Sequence analysis, Gene structure 1 4 4 4 1 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 47 168 False +anndata anndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loom Import, Export, Inspect and Manipulate Anndata and Loom objects To update https://anndata.readthedocs.io Transcriptomics, Sequence Analysis anndata iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata 0.10.3 anndata 0.6.22.post1 5 4 5 0 5 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 625 35620 False +arriba arriba, arriba_draw_fusions, arriba_get_filters Arriba detects fusion genes in RNA-Seq data after running RNA-STAR Up-to-date https://github.com/suhrig/arriba Sequence Analysis, Transcriptomics arriba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba https://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba 2.4.0 arriba 2.4.0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 38 3528 False +askor askor_de AskoR links EdgeR and AskOmics To update https://github.com/askomics/askoR Transcriptomics askor_de genouest https://github.com/genouest/galaxy-tools/tree/master/tools/askor https://github.com/genouest/galaxy-tools/tree/master/tools/askor 0.2 bioconductor-limma 3.58.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bamparse bamparse Generates hit count lists from bam alignments. To update http://artbio.fr RNA, Transcriptomics bamparse artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse 4.1.1 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +baredsc baredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2d baredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. baredsc baredsc baredSC The baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability Up-to-date https://github.com/lldelisle/baredSC Transcriptomics, Visualization baredsc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/baredsc https://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc 1.1.3 baredsc 1.1.3 Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability 4 0 4 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 71 False +bctools bctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_events bctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0 Up-to-date https://github.com/dmaticzka/bctools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools 0.2.2 bctools 0.2.2 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 87 2895 False +brew3r_r brew3r_r Extend 3' end of a GTF using another GTF as a template To update https://bioconductor.org/packages/release/bioc/html/BREW3R.r.html Transcriptomics, RNA brew3r_r iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_r https://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r 1.0.2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cell-types-analysis ct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvals Tools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysis To update Transcriptomics, RNA, Statistics suite_cell_types_analysis ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis 1.1.1 cell-types-analysis 0.1.11 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 6 False +cemitool cemitool Gene co-expression network analysis tool cemitool cemitool CEMiTool It unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network. Enrichment analysis, Pathway or network analysis Gene expression, Transcriptomics, Microarray experiment To update https://www.bioconductor.org/packages/release/bioc/html/CEMiTool.html Transcriptomics, RNA, Statistics cemitool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool https://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool 1.18.1 bioconductor-cemitool 1.26.0 Enrichment analysis, Pathway or network analysis Transcriptomics, Microarray experiment 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 9 98 False +cherri cherri_eval, cherri_train Computational Help Evaluating RNA-RNA interactions cherri cherri cherri CheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions. Molecular interactions, pathways and networks, Structure analysis, Machine learning To update https://github.com/BackofenLab/Cherri Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cherri https://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri 0.7 cherri 0.8 Molecular interactions, pathways and networks, Structure analysis, Machine learning 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 207 False +chira chira_collapse, chira_extract, chira_map, chira_merge, chira_quantify Chimeric Read Annotator for RNA-RNA interactome data chira chira ChiRA ChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc. RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA Up-to-date https://github.com/pavanvidem/chira RNA, Transcriptomics, Sequence Analysis chira iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chira https://github.com/galaxyproject/tools-iuc/tree/main/tools/chira 1.4.3 chira 1.4.3 Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA 5 0 5 0 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 97 6418 False +cite_seq_count cite_seq_count Count CMO/HTO CITE-seq-Count CITE-seq-Count CITE-seq-Count Tool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment. RNA-Seq quantification Transcriptomics, Immunoproteins and antigens Up-to-date https://github.com/Hoohm/CITE-seq-Count Transcriptomics cite_seq_count iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count 1.4.4 cite-seq-count 1.4.4 RNA-Seq quantification Transcriptomics, Immunoproteins and antigens 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 18 False +cosg cosg Marker gene identification for single-cell sequencing data using COSG. Up-to-date https://github.com/genecell/COSG Transcriptomics, Sequence Analysis cosg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg 1.0.1 cosg 1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cpat cpat Coding-potential assessment tool using an alignment-free logistic regression model. Up-to-date https://github.com/liguowang/cpat Transcriptomics cpat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/cpat https://github.com/bgruening/galaxytools/tree/master/tools/cpat 3.0.5 cpat 3.0.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 21 134 False +cpm_tpm_rpk cpm_tpm_rpk Generate CPM,TPM or RPK from raw counts To update http://artbio.fr Transcriptomics cpm_tpm_rpk artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk 0.5.2 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +crosscontamination_barcode_filter crosscontamination_barcode_filter Barcode contamination discovery tool To update Transcriptomics, Visualization crosscontamination_barcode_filter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filter https://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter 0.3 r-ggplot2 2.2.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 17 347 False +cuffcompare cuffcompare Galaxy wrappers for the Cuffcompare tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffcompare devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 65 1130 False +cuffdiff cuffdiff Galaxy wrappers for the Cuffdiff tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffdiff devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiff https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff 2.2.1 cufflinks 2.2.1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 228 5831 False +cufflinks cufflinks Galaxy wrappers for the Cufflinks tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cufflinks devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinks https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 319 32218 False +cuffmerge cuffmerge Galaxy wrappers for the Cuffmerge tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffmerge devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmerge https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 122 3292 False +cuffnorm cuffnorm The Cuffnorm tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffnorm devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnorm https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 27 660 False +cuffquant cuffquant The Cuffquant tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffquant devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquant https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 18 688 False +data-hca hca_matrix_downloader Tools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projects To update Transcriptomics, Sequence Analysis suite_human_cell_atlas_tools ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hca v0.0.4+galaxy0 hca-matrix-downloader 0.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 34 439 False +data-scxa retrieve_scxa Tools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/home To update Transcriptomics, Sequence Analysis suite_ebi_expression_atlas ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxa v0.0.2+galaxy2 wget 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 99 799 False +decoupler score_genes_aucell, decoupler_pathway_inference, decoupler_pseudobulk decoupler - Ensemble of methods to infer biological activities To update https://decoupler-py.readthedocs.io/en/latest/ Transcriptomics suite_decoupler ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler 1.4.0+galaxy3 decoupler 1.5.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 False +deg_annotate deg_annotate Annotate DESeq2/DEXSeq output tables To update Transcriptomics deg_annotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate 1.1.0 bedtools 2.31.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1774 19910 False +deseq2 deseq2 Differential gene expression analysis based on the negative binomial distribution DESeq2 DESeq2 DESeq2 R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution. Differential gene expression analysis, RNA-Seq analysis RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics deseq2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq2 2.11.40.8 bioconductor-deseq2 1.42.0 Differential gene expression analysis, RNA-Seq analysis RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 4990 95752 False +deseq2_normalization deseq2_normalization Normalizes gene hitlists To update http://artbio.fr RNA, Transcriptomics, Sequence Analysis, Statistics deseq2_normalization artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization 1.40.2+galaxy0 bioconductor-deseq2 1.42.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +dexseq dexseq, dexseq_count, plotdexseq Inference of differential exon usage in RNA-Seq dexseq dexseq DEXSeq The package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results. Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq Up-to-date https://www.bioconductor.org/packages/release/bioc/html/DEXSeq.html Transcriptomics, RNA, Statistics dexseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq 1.48.0 bioconductor-dexseq 1.48.0 Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 218 16064 False +dropletutils dropletutils_empty_drops, dropletutils_read_10x De-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_dropletutils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils 1.0.4 dropletutils-scripts 0.0.5 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 201 1599 False +dropletutils dropletutils DropletUtils - Utilities for handling droplet-based single-cell RNA-seq data dropletutils dropletutils DropletUtils Provides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix. Loading, Community profiling Gene expression, RNA-seq, Sequencing, Transcriptomics To update https://bioconductor.org/packages/devel/bioc/html/DropletUtils.html Transcriptomics, Sequence Analysis dropletutils iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils 1.10.0 bioconductor-dropletutils 1.22.0 Sequencing, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 126 3934 False +edger edger Perform RNA-Seq differential expression analysis using edgeR pipeline edger edger edgeR Differential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE. Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq To update http://bioconductor.org/packages/release/bioc/html/edgeR.html Transcriptomics, RNA, Statistics edger iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger https://github.com/galaxyproject/tools-iuc/tree/main/tools/edger 3.36.0 bioconductor-edger 4.0.16 Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 945 18117 False +egsea egsea This tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testing egsea egsea EGSEA This package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing. Gene set testing Systems biology To update https://bioconductor.org/packages/release/bioc/html/EGSEA.html Transcriptomics, RNA, Statistics egsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea 1.20.0 bioconductor-egsea 1.28.0 Gene set testing Systems biology 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 177 2524 False +fastq_provider fastq_provider Retrieval and download of FASTQ files from ENA and other repositories such as HCA. To update https://github.com/ebi-gene-expression-group/atlas-fastq-provider Data Source, RNA, Transcriptomics atlas_fastq_provider ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_provider https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider 0.4.4 atlas-fastq-provider 0.4.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_utils fastq_filter_n, fastq_trim_poly_at Set of tools for handling fastq files To update https://github.com/nunofonseca/fastq_utils Transcriptomics, RNA fastq_utils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utils https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils 0.25.1+galaxy0 fastq_utils 0.25.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +featurecounts featurecounts featureCounts counts the number of reads aligned to defined masked regions in a reference genome featurecounts featurecounts FeatureCounts featureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package. Read summarisation, RNA-Seq quantification RNA-Seq To update http://bioinf.wehi.edu.au/featureCounts RNA, Transcriptomics, Sequence Analysis featurecounts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts https://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts 2.0.3 subread 2.0.6 Read summarisation, RNA-Seq quantification RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 4679 696399 False +fgsea fgsea Perform gene set testing using fgsea fgsea fgsea fgsea The package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction. Gene-set enrichment analysis Genetics To update https://bioconductor.org/packages/release/bioc/html/fgsea.html Visualization, Transcriptomics, Statistics fgsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fgsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea 1.8.0+galaxy1 bioconductor-fgsea 1.28.0 Gene-set enrichment analysis Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 307 5240 False +garnett garnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_file De-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_garnett ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett 0.2.8 garnett-cli 0.0.5 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 27 False +genomic_super_signature genomic_super_signature Interpretation of RNAseq experiments through robust, efficient comparison to public databases genomicsupersignature genomicsupersignature GenomicSuperSignature GenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases. Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment To update https://github.com/shbrief/GenomicSuperSignature Sequence Analysis, RNA, Transcriptomics genomic_super_signature iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signature https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature 1.2.0 bioconductor-genomicsupersignature 1.10.0 Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 11 46 False +gffcompare gffcompare Galaxy wrappers for Geo Pertea's GffCompare package. gffcompare gffcompare gffcompare Program for comparing, annotating, merging and tracking transcripts in GFF files. Sequence annotation Nucleic acids, Sequence analysis Up-to-date https://github.com/gpertea/gffcompare/ Transcriptomics gffcompare iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare 0.12.6 gffcompare 0.12.6 Sequence annotation Nucleic acids, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 381 3477 False +gsc_filter_cells filter_cells Filter single cell RNAseq data on libray depth and number of detected genes To update http://artbio.fr Transcriptomics gsc_filter_cells artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_filter_genes filter_genes Filter genes that are detected in less than a fraction of libraries in single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_filter_genes artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_gene_expression_correlations single_cell_gene_expression_correlations Compute single-cell paire-wise gene expressions correlations To update http://artbio.fr Transcriptomics gsc_gene_expression_correlations artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlations https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_high_dimensions_visualisation high_dimensions_visualisation Generates PCA, t-SNE and HCPC visualisation To update http://artbio.fr Transcriptomics, Visualization gsc_high_dimensions_visualisation artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualization https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation 4.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_mannwhitney_de mannwhitney_de Perform a mann-whitney differential testing between two sets of gene expression data To update http://artbio.fr Transcriptomics gsc_mannwhitney_de artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de 4.1.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_scran_normalize scran_normalize Normalize raw counts using scran To update http://artbio.fr Transcriptomics gsc_scran_normalize artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize 1.28.1+galaxy0 bioconductor-scran 1.30.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 14 78 False +gsc_signature_score signature_score Compute signature scores from single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_signature_score artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score 2.3.9+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +heinz heinz_bum, heinz, heinz_scoring, heinz_visualization An algorithm for identification of the optimal scoring subnetwork. heinz heinz, bionet Heinz Tool for single-species active module discovery. Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks To update https://github.com/ls-cwi/heinz Transcriptomics, Visualization, Statistics heinz iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz https://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz 1.0 bioconductor-bionet 1.62.0 Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 242 1186 False +isoformswitchanalyzer isoformswitchanalyzer Statistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms. IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR Enables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well. Sequence comparison, Sequence analysis Computational biology, Gene transcripts To update https://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.html Transcriptomics, RNA, Statistics isoformswitchanalyzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer 1.20.0 bioconductor-isoformswitchanalyzer 2.2.0 Sequence comparison, Sequence analysis Computational biology, Gene transcripts 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 29 822 False +kallisto kallisto_pseudo, kallisto_quant kallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment. kallisto kallisto kallisto A program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment. Gene expression profiling Transcriptomics, RNA-seq, Gene expression To update https://pachterlab.github.io/kallisto/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto 0.48.0 kallisto 0.50.1 Gene expression profiling Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 299 24155 False +limma_voom limma_voom Perform RNA-Seq differential expression analysis using limma voom pipeline limma limma limma Data analysis, linear models and differential expression for microarray data. RNA-Seq analysis Molecular biology, Genetics Up-to-date http://bioconductor.org/packages/release/bioc/html/limma.html Transcriptomics, RNA, Statistics limma_voom iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom https://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom 3.58.1 bioconductor-limma 3.58.1 RNA-Seq analysis Molecular biology, Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1012 20344 False +masigpro masigpro Identify significantly differential expression profiles in time-course microarray experiments masigpro masigpro maSigPro Regression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments. Regression analysis Gene expression, Molecular genetics, Microarray experiment, RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/maSigPro.html Transcriptomics, RNA, Statistics masigpro iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/masigpro https://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro 1.49.3 coreutils 8.25 Regression analysis Gene expression, Microarray experiment, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 13 576 False +mircounts mircounts Generates miRNA count lists from read alignments to mirBase. To update http://artbio.fr RNA, Transcriptomics mircounts artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts https://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts 1.6 tar 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +monocle3 monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkers De-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_monocle3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle3 0.1.4 monocle3-cli 0.0.9 9 0 9 0 9 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 264 3266 False +multigsea multigsea GSEA-based pathway enrichment analysis for multi-omics data multiGSEA multiGSEA multiGSEA A GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration. Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules Up-to-date https://bioconductor.org/packages/devel/bioc/html/multiGSEA.html Transcriptomics, Proteomics, Statistics multigsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea 1.12.0 bioconductor-multigsea 1.12.0 Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 53 False +music_deconvolution music_construct_eset, music_inspect_eset, music_manipulate_eset, music_compare, music_deconvolution Multi-subject Single Cell deconvolution (MuSiC) Up-to-date https://github.com/xuranw/MuSiC Transcriptomics music bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/music/ https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution 0.1.1 music-deconvolution 0.1.1 5 5 4 0 5 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 240 1872 False +nugen_nudup nugen_nudup Marks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products. nudup nudup NuDup Marks/removes duplicate molecules based on the molecular tagging technology used in Tecan products. Duplication detection Sequencing Up-to-date https://github.com/tecangenomics/nudup SAM, Metagenomics, Sequence Analysis, Transcriptomics nugen_nudup iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup https://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup 2.3.3 nudup 2.3.3 Duplication detection Sequencing 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pathifier pathifier pathifier Up-to-date https:// Transcriptomics, Statistics pathifier artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier 1.40.0 bioconductor-pathifier 1.40.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 10 228 False +pizzly pizzly Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. To update https://github.com/pmelsted/pizzly/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly 0.37.3.1 pizzly 0.37.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 16 208 False +psiclass psiclass PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples. psiclass psiclass Up-to-date https://github.com/splicebox/PsiCLASS Transcriptomics psiclass iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclass https://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass 1.0.3 psiclass 1.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 15 False +qualimap qualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseq qualimap qualimap QualiMap Platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data. Sequencing quality control Data quality management To update http://qualimap.bioinfo.cipf.es/ Sequence Analysis, Transcriptomics, SAM qualimap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap https://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap 2.2.2d qualimap 2.3 Sequencing quality control Data quality management 4 4 4 1 4 4 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 4 4 1328 664470 False +raceid raceid_clustering, raceid_filtnormconf, raceid_inspectclusters, raceid_inspecttrajectory, raceid_trajectory RaceID3, StemID2, FateID - scRNA analysis To update https://github.com/dgrun/RaceID3_StemID2_package/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid 0.2.3 r-raceid 0.1.3 5 5 5 1 5 5 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 82 4569 False +repenrich edger-repenrich, repenrich Repeat element profiling To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich Transcriptomics repenrich artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich 2.31.1 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 False +repenrich2 edger-repenrich2, repenrich2 Repeat element profiling using bowtie2 aligner To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 Transcriptomics repenrich2 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 2.31.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 False +rgrnastar rna_star, rna_starsolo RNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapper star star STAR Ultrafast universal RNA-seq data aligner Sequence alignment RNA-Seq, Transcriptomics To update https://github.com/alexdobin/STAR Next Gen Mappers, Transcriptomics rgrnastar iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar https://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar 2.7.11a star 2.7.11b Sequence alignment RNA-Seq, Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 2 0 0 0 1 0 0 0 0 0 1 0 0 2 2 4015 425658 False +ribowaltz ribowaltz_process, ribowaltz_plot Calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data riboWaltz riboWaltz riboWaltz riboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data. Computational biology To update https://github.com/LabTranslationalArchitectomics/riboWaltz Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltz https://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz 1.2.0 ribowaltz 2.0 Computational biology 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 14 161 False +rsem extract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtie transcript quantification from RNA-Seq data To update https://github.com/deweylab/RSEM Transcriptomics, RNA rsem artbio https://github.com/artbio/tools-artbio/tree/master/tools/rsem https://github.com/ARTbio/tools-artbio/tree/main/tools/rsem rsem 1.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 1 1 67 377 False +rseqc rseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tin an RNA-seq quality control package rseqc rseqc RSeQC Provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. Data handling Sequencing Up-to-date https://code.google.com/p/rseqc/ Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualization rseqc nilesh https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc 5.0.3 rseqc 5.0.3 Data handling Sequencing 22 22 22 22 22 22 22 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 0 22 22 3206 133498 False +ruvseq ruvseq Remove Unwanted Variation from RNA-Seq Data ruvseq ruvseq RUVSeq This package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples. Differential gene expression analysis Gene expression, RNA-seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics ruvseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq 1.26.0 bioconductor-ruvseq 1.36.0 Differential gene expression analysis Gene expression 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 76 1236 False +salmon alevin, salmon, salmonquantmerge Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data. salmon salmon Salmon A tool for transcript expression quantification from RNA-seq data Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Gene expression, Transcriptomics To update https://github.com/COMBINE-lab/salmon Sequence Analysis, RNA, Transcriptomics bgruening https://github.com/bgruening/galaxytools/tree/master/tools/salmon https://github.com/bgruening/galaxytools/tree/master/tools/salmon 1.10.1 salmon 1.10.3 Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Transcriptomics 2 1 3 1 2 1 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 3 3 969 61937 False +sashimi_plot sashimi_plot Generates a sashimi plot from bam files. To update http://artbio.fr RNA, Transcriptomics, Graphics, Visualization sashimi_plot artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plot https://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot 0.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sc3 sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepare De-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_sc3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc3 1.8.0 sc3-scripts 0.0.6 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 False +scanpy scanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confounders Scanpy – Single-Cell Analysis in Python scanpy scanpy SCANPY Scalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. Differential gene expression analysis Gene expression, Cell biology, Genetics To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis scanpy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy 1.9.6 scanpy 1.7.2 Differential gene expression analysis Gene expression, Cell biology, Genetics 6 6 6 0 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 766 51978 False +scanpy anndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_data scanpy-scripts, command-line wrapper scripts around Scanpy. To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis, RNA scanpy_scripts ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpy https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy 1.9.3 scanpy-scripts 1.9.301 22 27 27 0 22 27 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 13 2185 39356 False +scater scater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_results De-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scater ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater 1.10.0 scater-scripts 0.0.5 0 1 6 0 0 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 16 387 False +scater scater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsne Scater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization. scater scater scater Pre-processing, quality control, normalization and visualization of single-cell RNA-seq data. Read pre-processing, Sequencing quality control, Sequence visualisation RNA-seq, Quality affairs, Molecular genetics To update http://bioconductor.org/packages/scater/ Transcriptomics, RNA, Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scater https://github.com/galaxyproject/tools-iuc/tree/main/tools/scater 1.22.0 bioconductor-scater 1.30.1 Read pre-processing, Sequence visualisation Quality affairs, Molecular genetics 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 77 1365 False +sccaf run_sccaf, sccaf_asses, sccaf_asses_merger, sccaf_regress_out SCCAF: Single Cell Clustering Assessment Framework. To update https://github.com/sccaf/sccaf Transcriptomics SCCAF ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccaf https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf 0.0.9 sccaf 0.0.10 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 110 False +sceasy sceasy_convert Converter between difference single-cell formats Up-to-date https://github.com/cellgeni/sceasy/ Transcriptomics sceasy_convert iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy 0.0.7 r-sceasy 0.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 False +sceasy sceasy_convert Convert scRNA data object between popular formats To update Transcriptomics sceasy ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy 0.0.5 r-sceasy 0.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 False +schicexplorer schicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrol scHiCExplorer: Set of programs to process, analyze and visualize scHi-C data. To update https://github.com/joachimwolff/schicexplorer Sequence Analysis, Transcriptomics, Visualization schicexplorer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorer https://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer 4 schicexplorer 7 0 0 16 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 16 23 779 False +scmap scmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_features De-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scmap ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap 1.6.4 scmap-cli 0.1.0 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 13 83 False +scpipe scpipe A flexible preprocessing pipeline for single-cell RNA-sequencing data scpipe scpipe scPipe A preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols. Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq, Sequencing To update http://bioconductor.org/packages/release/bioc/html/scPipe.html Transcriptomics, RNA, Statistics scpipe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipe https://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe 1.0.0+galaxy2 bioconductor-scpipe 2.2.0 Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 11 628 False +scpred scpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_model De-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scpred ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred 1.0.2 scpred-cli 0.1.0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 False +seurat seurat A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data To update https://github.com/satijalab/seurat Transcriptomics, RNA, Statistics seurat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat https://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat 4.3.0.1 r-seurat 3.0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 66 1543 False +seurat seurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_features De-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1 Up-to-date https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ Transcriptomics, RNA, Statistics, Sequence Analysis suite_seurat ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat 4.0.0 seurat-scripts 4.0.0 0 0 14 11 0 0 14 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 0 0 0 181 1966 False +slamdunk alleyoop, slamdunk Slamdunk maps and quantifies SLAMseq reads Up-to-date http://t-neumann.github.io/slamdunk RNA, Transcriptomics, Sequence Analysis, Next Gen Mappers slamdunk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunk https://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk 0.4.3 slamdunk 0.4.3 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 361 False +sleuth sleuth Sleuth is a program for differential analysis of RNA-Seq data. sleuth sleuth sleuth A statistical model and software application for RNA-seq differential expression analysis. Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation RNA-seq, Gene expression, Statistics and probability Up-to-date https://github.com/pachterlab/sleuth Transcriptomics, RNA, Statistics sleuth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuth https://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth 0.30.1 r-sleuth 0.30.1 Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 8 64 False +star_fusion star_fusion STAR Fusion detects fusion genes in RNA-Seq data after running RNA-STAR To update Sequence Analysis, Transcriptomics star_fusion iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusion https://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion 0.5.4-3+galaxy1 star-fusion 1.13.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 35 1212 False +stringtie stringtie, stringtie_merge StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. stringtie stringtie StringTie Fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus. Transcriptome assembly, RNA-Seq analysis Transcriptomics, RNA-seq Up-to-date http://ccb.jhu.edu/software/stringtie/ Transcriptomics stringtie iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie https://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie 2.2.3 stringtie 2.2.3 Transcriptome assembly, RNA-Seq analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2165 167659 False +tophat_fusion_post tophat_fusion_post Wrapper for Tophat-Fusion post step To update Transcriptomics tophat_fusion_post devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_post https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post 0.1 blast+ 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 15 216 False +transdecoder transdecoder TransDecoder finds coding regions within transcripts TransDecoder TransDecoder TransDecoder TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks. Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing To update https://transdecoder.github.io/ Transcriptomics, RNA transdecoder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoder https://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder 5.5.0 transdecoder 5.7.1 Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 348 5468 False +trinity trinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_stats Trinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseq trinity trinity Trinity Trinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads. Transcriptome assembly Transcriptomics, Gene expression, Gene transcripts Up-to-date https://github.com/trinityrnaseq/trinityrnaseq Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity 2.15.1 trinity 2.15.1 Transcriptome assembly Transcriptomics, Gene transcripts 9 13 13 13 9 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 11 0 0 1 0 0 0 0 0 13 12 1762 31951 False +trinotate trinotate Trinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes. trinotate trinotate Trinotate Comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms. Gene functional annotation Gene expression, Transcriptomics To update https://trinotate.github.io/ Transcriptomics, RNA trinotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate 3.2.2 trinotate 4.0.2 Gene functional annotation Transcriptomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 151 1796 False +tximport tximport Wrapper for the Bioconductor package tximport tximport tximport tximport An R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages. Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows To update http://bioconductor.org/packages/tximport/ Transcriptomics tximport iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tximport https://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport 1.22.0 bioconductor-tximport 1.30.0 Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 88 1408 False +ucsc-cell-browser ucsc_cell_browser Python pipeline and Javascript scatter plot library for single-cell datasets To update https://cells.ucsc.edu/ Transcriptomics ucsc_cell_browser ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser 1.0.0+galaxy1 ucsc-cell-browser 1.2.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 78 941 False +umi_tools umi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelist UMI-tools extract - Extract UMIs from fastq umi-tools umi-tools UMI-tools Tools for handling Unique Molecular Identifiers in NGS data sets. Sequencing quality control NGS, Sequence sites, features and motifs, Quality affairs To update https://github.com/CGATOxford/UMI-tools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools 1.1.2 umi_tools 1.1.5 Sequencing quality control Sequence sites, features and motifs, Quality affairs 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 5 5 379 61618 False +velocyto velocyto_cli Velocyto is a library for the analysis of RNA velocity. Up-to-date http://velocyto.org/ Transcriptomics velocyto iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/velocyto https://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto 0.17.17 velocyto.py 0.17.17 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 False +volcanoplot volcanoplot Tool to create a Volcano Plot To update https://ggplot2.tidyverse.org/ Visualization, Transcriptomics, Statistics volcanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplot https://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot 0.0.6 r-ggplot2 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1749 30946 False diff --git a/results/spoc/tools_wordcloud.png b/results/spoc/tools_wordcloud.png new file mode 100644 index 00000000..151a4b4a Binary files /dev/null and b/results/spoc/tools_wordcloud.png differ