diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 5b705a647..4407ee5b3 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -27,7 +27,7 @@ jobs:
steps:
- name: Add reaction
if: ${{ github.event.client_payload.slash_command.command == 'run-all-workflow-tests' }}
- uses: peter-evans/create-or-update-comment@v2
+ uses: peter-evans/create-or-update-comment@v4
with:
token: ${{ secrets.PAT }}
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -43,11 +43,11 @@ jobs:
- name: Determine latest commit in the Galaxy repo
id: get-galaxy-sha
run: echo "galaxy-head-sha=$(git ls-remote https://github.com/${{ steps.get-fork-branch.outputs.fork }}/galaxy refs/heads/${{ steps.get-fork-branch.outputs.branch }} | cut -f1)" >> $GITHUB_OUTPUT
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
@@ -56,7 +56,7 @@ jobs:
# are not available as wheels, pip will build a wheel for them, which can be cached.
- name: Install wheel
run: pip install wheel
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Fake a Planemo run to update cache and determine commit range, repositories, and chunks
@@ -85,14 +85,14 @@ jobs:
matrix:
python-version: ['3.11']
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 1
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
@@ -105,6 +105,7 @@ jobs:
mode: lint
workflows: true
repository-list: "${{ needs.setup.outputs.repository-list }}"
+ additional-planemo-options: --iwc
test:
name: Test workflows
@@ -129,14 +130,14 @@ jobs:
steps:
# checkout the repository
# and use it as the current working directory
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 1
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
@@ -153,7 +154,7 @@ jobs:
galaxy-branch: ${{ needs.setup.outputs.branch }}
chunk: ${{ matrix.chunk }}
chunk-count: ${{ needs.setup.outputs.chunk-count }}
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: 'Workflow test output ${{ matrix.chunk }}'
path: upload
@@ -172,14 +173,14 @@ jobs:
# This job runs on Linux
runs-on: ubuntu-latest
steps:
- - uses: actions/download-artifact@v3
+ - uses: actions/download-artifact@v4
with:
path: artifacts
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
@@ -190,7 +191,7 @@ jobs:
with:
mode: combine
html-report: true
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: 'All workflow test results'
path: upload
@@ -201,7 +202,7 @@ jobs:
- name: Create comment
if: ${{ github.event.client_payload.slash_command.command == 'run-all-workflow-tests' }}
- uses: peter-evans/create-or-update-comment@v2
+ uses: peter-evans/create-or-update-comment@v4
with:
token: ${{ secrets.PAT }}
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
diff --git a/.github/workflows/enable_ci_workflows.yml b/.github/workflows/enable_ci_workflows.yml
index b7a1999c7..875dfe950 100644
--- a/.github/workflows/enable_ci_workflows.yml
+++ b/.github/workflows/enable_ci_workflows.yml
@@ -8,7 +8,7 @@ jobs:
name: Enable CI workflows
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 1
- name: run Python script
diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml
index 3b0968249..d27bb5919 100644
--- a/.github/workflows/setup.yml
+++ b/.github/workflows/setup.yml
@@ -60,17 +60,17 @@ jobs:
- name: Determine latest commit in the Galaxy repo
id: get-galaxy-sha
run: echo "galaxy-head-sha=$(git ls-remote https://github.com/${{ inputs.galaxy-fork }}/galaxy refs/heads/${{ inputs.galaxy-branch }} | cut -f1)" >> $GITHUB_OUTPUT
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ steps.get-galaxy-sha.outputs.galaxy-head-sha }}
- name: Cache .planemo
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-planemo
with:
path: ~/.planemo
@@ -79,7 +79,7 @@ jobs:
# are not available as wheels, pip will build a wheel for them, which can be cached.
- name: Install wheel
run: pip install wheel
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fake a Planemo run to update cache and determine commit range, repositories, and chunks
diff --git a/.github/workflows/slash.yaml b/.github/workflows/slash.yaml
index 8f9e2b2fe..1ffa52169 100644
--- a/.github/workflows/slash.yaml
+++ b/.github/workflows/slash.yaml
@@ -8,7 +8,7 @@ jobs:
steps:
- name: Slash Command Dispatch
if: github.repository_owner == 'galaxyproject'
- uses: peter-evans/slash-command-dispatch@v3
+ uses: peter-evans/slash-command-dispatch@v4
with:
token: ${{ secrets.PAT }}
commands: |
diff --git a/.github/workflows/test_workflows.yml b/.github/workflows/test_workflows.yml
index 073e37fc5..0905114ac 100644
--- a/.github/workflows/test_workflows.yml
+++ b/.github/workflows/test_workflows.yml
@@ -60,18 +60,20 @@ jobs:
ports:
- 5432:5432
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 1
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ inputs.galaxy-head-sha }}
+ - name: Clean dotnet folder for space
+ run: rm -Rf /usr/share/dotnet
- name: Planemo test workflows
uses: galaxyproject/planemo-ci-action@v1
id: test-workflows
@@ -84,7 +86,7 @@ jobs:
galaxy-branch: ${{ inputs.galaxy-branch }}
chunk: ${{ matrix.chunk }}
chunk-count: ${{ inputs.chunk-count }}
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: 'Workflow test output ${{ matrix.chunk }}'
path: upload
diff --git a/.github/workflows/usegalaxy-star-installation.yml b/.github/workflows/usegalaxy-star-installation.yml
index d6fbf8770..ea78b5f81 100644
--- a/.github/workflows/usegalaxy-star-installation.yml
+++ b/.github/workflows/usegalaxy-star-installation.yml
@@ -9,9 +9,9 @@ jobs:
workflow-install:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Cache downloads
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
~/.cache/pip
diff --git a/.github/workflows/workflow_test.yml b/.github/workflows/workflow_test.yml
index 99918de07..28d0d0b3a 100644
--- a/.github/workflows/workflow_test.yml
+++ b/.github/workflows/workflow_test.yml
@@ -24,14 +24,14 @@ jobs:
matrix:
python-version: ['3.11']
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 1
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
@@ -44,6 +44,7 @@ jobs:
mode: lint
workflows: true
repository-list: "${{ needs.setup.outputs.repository-list }}"
+ additional-planemo-options: --iwc
test:
name: Test workflows
@@ -69,14 +70,14 @@ jobs:
python-version: ['3.11']
runs-on: ubuntu-latest
steps:
- - uses: actions/download-artifact@v3
+ - uses: actions/download-artifact@v4
with:
path: artifacts
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
@@ -94,7 +95,7 @@ jobs:
- name: Debug PR number
run: |
cat ./upload/NR
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: 'All tool test results'
path: upload
@@ -114,14 +115,14 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.repository_owner == 'galaxyproject'
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 1
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache .cache/pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
@@ -155,12 +156,12 @@ jobs:
steps:
# report to the PR if deployment failed
- name: Get PR object
- uses: 8BitJonny/gh-get-current-pr@2.2.0
+ uses: 8BitJonny/gh-get-current-pr@3.0.0
id: getpr
with:
sha: ${{ github.event.after }}
- name: Create comment
- uses: peter-evans/create-or-update-comment@v3
+ uses: peter-evans/create-or-update-comment@v4
with:
token: ${{ secrets.PAT }}
issue-number: ${{ steps.getpr.outputs.number }}
diff --git a/.gitignore b/.gitignore
index 9e75cc10f..539da7c1d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
tool_test_output.html
tool_test_output.json
+.DS_Store
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/Assembly-Hifi-HiC-phasing-VGP4-tests.yml b/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/Assembly-Hifi-HiC-phasing-VGP4-tests.yml
index 68205c04a..6c3117206 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/Assembly-Hifi-HiC-phasing-VGP4-tests.yml
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/Assembly-Hifi-HiC-phasing-VGP4-tests.yml
@@ -32,6 +32,7 @@
Name for Haplotype 1: Hap1
Name for Haplotype 2: Hap2
Homozygous Read Coverage: null
+ Database for Busco Lineage: v5
outputs:
Hifiasm HiC hap1:
assert:
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/Assembly-Hifi-HiC-phasing-VGP4.ga b/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/Assembly-Hifi-HiC-phasing-VGP4.ga
index 46254fdae..0c1e60942 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/Assembly-Hifi-HiC-phasing-VGP4.ga
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/Assembly-Hifi-HiC-phasing-VGP4.ga
@@ -20,7 +20,7 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release": "0.2.1",
+ "release": "0.2.2",
"name": "Assembly-Hifi-HiC-phasing-VGP4",
"report": {
"markdown": "\n# Workflow Execution Report\n\nTime workflow was invoked:\n\n```galaxy\ninvocation_time()\n```\nGalaxy version :\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Raw unitig graph\n\n```galaxy\nhistory_dataset_as_image(output=\"raw unitig graph image\")\n```\n\n## Merqury results\n\n### Merqury QV\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_qv\")\n```\n\n### Merqury completeness\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_stats\")\n```\n\n### Merqury plots\n\n\nspectra-cn:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-cn.fl\")\n```\n\nspectra-asm:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-asm.fl\")\n```\n\nhap1 spectra-cn:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_01.spectra-cn.fl\")\n```\n\nhap2 spectra-cn:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_02.spectra-cn.fl\")\n```\n\n## BUSCO results (Vertebrata database)\n\nHap1\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco Summary Image Hap1\")\n```\n\nHap2\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco Summary Image Hap2\")\n```\n\n## Assembly statistics\n\n\n```galaxy\nhistory_dataset_as_table(output=\"clean_stats\")\n```\n\n\n## Nx and Size plots\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Nx Plot\")\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Size Plot\")\n```\n\n\n\n## Current Workflow\n```galaxy\nworkflow_display()\n```\n"
@@ -162,11 +162,44 @@
"workflow_outputs": []
},
"5": {
- "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis",
+ "annotation": "",
"content_id": null,
"errors": null,
"id": 5,
"input_connections": {},
+ "inputs": [
+ {
+ "description": "",
+ "name": "Database for Busco Lineage"
+ }
+ ],
+ "label": "Database for Busco Lineage",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 81.55189123074645,
+ "top": 666.080035105452
+ },
+ "tool_id": null,
+ "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "245a5b51-c40d-4425-81ca-2baf3c157022",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "07c8cb5a-ff7f-4e51-8f81-74b2f7630f2e"
+ }
+ ]
+ },
+ "6": {
+ "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis",
+ "content_id": null,
+ "errors": null,
+ "id": 6,
+ "input_connections": {},
"inputs": [
{
"description": "Taxonomic lineage for the organism being assembled for Busco analysis",
@@ -177,8 +210,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 48.90625,
- "top": 607.51953125
+ "left": 112.31427690494708,
+ "top": 770.3740188995779
},
"tool_id": null,
"tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
@@ -186,13 +219,19 @@
"type": "parameter_input",
"uuid": "a9df063c-37ef-440d-93e6-212ac3a598e8",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "4c2b1889-3936-4df2-8375-250ca7dea2c7"
+ }
+ ]
},
- "6": {
+ "7": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 6,
+ "id": 7,
"input_connections": {},
"inputs": [
{
@@ -204,8 +243,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 66.703125,
- "top": 671.3125
+ "left": 122.01184397539753,
+ "top": 852.6092753452594
},
"tool_id": null,
"tool_state": "{\"default\": \"Hap1\", \"parameter_type\": \"text\", \"optional\": true}",
@@ -213,13 +252,19 @@
"type": "parameter_input",
"uuid": "41d1bb31-75f9-4034-abad-96aed4916b45",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "34ed45e3-2132-4c67-af2a-b72a8cbcf55c"
+ }
+ ]
},
- "7": {
+ "8": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 7,
+ "id": 8,
"input_connections": {},
"inputs": [
{
@@ -231,8 +276,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 78.38870701261258,
- "top": 769.8272396352553
+ "left": 130.80851045942487,
+ "top": 939.8716854194543
},
"tool_id": null,
"tool_state": "{\"default\": \"Hap2\", \"parameter_type\": \"text\", \"optional\": true}",
@@ -240,13 +285,19 @@
"type": "parameter_input",
"uuid": "6d5afa06-c3e8-4eb7-8819-8cfe8300c462",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "8c9ba587-c3e2-4200-8794-2b18ba08fc9e"
+ }
+ ]
},
- "8": {
+ "9": {
"annotation": "Defaults to 37 if not specified. For genomes much larger than human, applying -f38 or even -f39 is preferred to save memory on k-mer counting.",
"content_id": null,
"errors": null,
- "id": 8,
+ "id": 9,
"input_connections": {},
"inputs": [
{
@@ -258,8 +309,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 96.0148601509567,
- "top": 866.2253241049863
+ "left": 137.2665356894154,
+ "top": 1033.0113085913417
},
"tool_id": null,
"tool_state": "{\"default\": 37, \"parameter_type\": \"integer\", \"optional\": true}",
@@ -267,13 +318,19 @@
"type": "parameter_input",
"uuid": "b949921b-95a3-4d43-81b2-4006a4909e4b",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "0696f3a8-cd87-4b44-a71c-54611b53be34"
+ }
+ ]
},
- "9": {
+ "10": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 9,
+ "id": 10,
"input_connections": {},
"inputs": [
{
@@ -285,8 +342,8 @@
"name": "Input dataset",
"outputs": [],
"position": {
- "left": 105.51087786212338,
- "top": 966.1883445504246
+ "left": 145.73965411666467,
+ "top": 1117.6864372730274
},
"tool_id": null,
"tool_state": "{\"optional\": true, \"tag\": \"\"}",
@@ -294,13 +351,19 @@
"type": "data_input",
"uuid": "557a2e2b-008c-4566-836a-6509950aa85b",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "7b3c62fb-1823-4366-92b7-053ea9054620"
+ }
+ ]
},
- "10": {
+ "11": {
"annotation": "If empty, read coverage will be estimated from the Genomescope parameters. ",
"content_id": null,
"errors": null,
- "id": 10,
+ "id": 11,
"input_connections": {},
"inputs": [
{
@@ -321,13 +384,19 @@
"type": "parameter_input",
"uuid": "b251eddc-49e6-4899-a893-a904c29b9e75",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "2e143429-f516-4a3d-8983-08df349be75f"
+ }
+ ]
},
- "11": {
+ "12": {
"annotation": "GenomeScope model parameters generated by K-mer profiling workflow",
"content_id": null,
"errors": null,
- "id": 11,
+ "id": 12,
"input_connections": {},
"inputs": [
{
@@ -350,11 +419,11 @@
"when": null,
"workflow_outputs": []
},
- "12": {
+ "13": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
- "id": 12,
+ "id": 13,
"input_connections": {
"library|input_1": {
"id": 0,
@@ -428,11 +497,11 @@
}
]
},
- "13": {
+ "14": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"errors": null,
- "id": 13,
+ "id": 14,
"input_connections": {
"infile": {
"id": 3,
@@ -473,14 +542,14 @@
"when": null,
"workflow_outputs": []
},
- "14": {
+ "15": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
"errors": null,
- "id": 14,
+ "id": 15,
"input_connections": {
"input": {
- "id": 11,
+ "id": 12,
"output_name": "output"
}
},
@@ -518,14 +587,14 @@
"when": null,
"workflow_outputs": []
},
- "15": {
+ "16": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
"errors": null,
- "id": 15,
+ "id": 16,
"input_connections": {
"results_0|software_cond|input": {
- "id": 12,
+ "id": 13,
"output_name": "report"
}
},
@@ -561,14 +630,14 @@
"when": null,
"workflow_outputs": []
},
- "16": {
+ "17": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"errors": null,
- "id": 16,
+ "id": 17,
"input_connections": {
"infile": {
- "id": 13,
+ "id": 14,
"output_name": "output"
}
},
@@ -606,14 +675,14 @@
"when": null,
"workflow_outputs": []
},
- "17": {
+ "18": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 17,
+ "id": 18,
"input_connections": {
"input": {
- "id": 14,
+ "id": 15,
"output_name": "out_file1"
}
},
@@ -645,14 +714,14 @@
"when": null,
"workflow_outputs": []
},
- "18": {
+ "19": {
"annotation": "",
"content_id": "Convert characters1",
"errors": null,
- "id": 18,
+ "id": 19,
"input_connections": {
"input": {
- "id": 16,
+ "id": 17,
"output_name": "outfile"
}
},
@@ -684,14 +753,14 @@
"when": null,
"workflow_outputs": []
},
- "19": {
+ "20": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 19,
+ "id": 20,
"input_connections": {
"input1": {
- "id": 17,
+ "id": 18,
"output_name": "out_file1"
}
},
@@ -730,14 +799,14 @@
"when": null,
"workflow_outputs": []
},
- "20": {
+ "21": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 20,
+ "id": 21,
"input_connections": {
"input": {
- "id": 18,
+ "id": 19,
"output_name": "out_file1"
}
},
@@ -769,18 +838,18 @@
"when": null,
"workflow_outputs": []
},
- "21": {
+ "22": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pick_value/pick_value/0.2.0",
"errors": null,
- "id": 21,
+ "id": 22,
"input_connections": {
"style_cond|type_cond|pick_from_0|value": {
- "id": 10,
+ "id": 11,
"output_name": "output"
},
"style_cond|type_cond|pick_from_1|value": {
- "id": 19,
+ "id": 20,
"output_name": "integer_param"
}
},
@@ -820,14 +889,14 @@
"when": null,
"workflow_outputs": []
},
- "22": {
+ "23": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 22,
+ "id": 23,
"input_connections": {
"input1": {
- "id": 20,
+ "id": 21,
"output_name": "out_file1"
}
},
@@ -874,18 +943,18 @@
}
]
},
- "23": {
+ "24": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/hifiasm/hifiasm/0.19.9+galaxy0",
"errors": null,
- "id": 23,
+ "id": 24,
"input_connections": {
"assembly_options|hom_cov": {
- "id": 21,
+ "id": 22,
"output_name": "integer_param"
},
"filter_bits": {
- "id": 8,
+ "id": 9,
"output_name": "output"
},
"hic_partition|h1": {
@@ -897,7 +966,7 @@
"output_name": "output"
},
"mode|reads": {
- "id": 12,
+ "id": 13,
"output_name": "out1"
}
},
@@ -999,14 +1068,14 @@
"when": null,
"workflow_outputs": []
},
- "24": {
+ "25": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4",
"errors": null,
- "id": 24,
+ "id": 25,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_raw_initig"
}
},
@@ -1052,18 +1121,18 @@
}
]
},
- "25": {
+ "26": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 25,
+ "id": 26,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_balanced_contig_hap2_graph"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 22,
+ "id": 23,
"output_name": "integer_param"
}
},
@@ -1110,18 +1179,18 @@
"when": null,
"workflow_outputs": []
},
- "26": {
+ "27": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 26,
+ "id": 27,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_balanced_contig_hap1_graph"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 22,
+ "id": 23,
"output_name": "integer_param"
}
},
@@ -1168,14 +1237,14 @@
"when": null,
"workflow_outputs": []
},
- "27": {
+ "28": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 27,
+ "id": 28,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_balanced_contig_hap2_graph"
}
},
@@ -1222,14 +1291,14 @@
"when": null,
"workflow_outputs": []
},
- "28": {
+ "29": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 28,
+ "id": 29,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_balanced_contig_hap2_graph"
}
},
@@ -1282,14 +1351,14 @@
}
]
},
- "29": {
+ "30": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 29,
+ "id": 30,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_balanced_contig_hap1_graph"
}
},
@@ -1336,14 +1405,14 @@
"when": null,
"workflow_outputs": []
},
- "30": {
+ "31": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 30,
+ "id": 31,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_balanced_contig_hap1_graph"
}
},
@@ -1396,18 +1465,18 @@
}
]
},
- "31": {
+ "32": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 31,
+ "id": 32,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_balanced_contig_hap2_graph"
},
"mode_condition|swiss_army_knife": {
- "id": 9,
+ "id": 10,
"output_name": "output"
}
},
@@ -1445,18 +1514,18 @@
"when": null,
"workflow_outputs": []
},
- "32": {
+ "33": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 32,
+ "id": 33,
"input_connections": {
"input_file": {
- "id": 23,
+ "id": 24,
"output_name": "hic_balanced_contig_hap1_graph"
},
"mode_condition|swiss_army_knife": {
- "id": 9,
+ "id": 10,
"output_name": "output"
}
},
@@ -1494,14 +1563,14 @@
"when": null,
"workflow_outputs": []
},
- "33": {
+ "34": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 33,
+ "id": 34,
"input_connections": {
"infile": {
- "id": 25,
+ "id": 26,
"output_name": "stats"
}
},
@@ -1539,14 +1608,14 @@
"when": null,
"workflow_outputs": []
},
- "34": {
+ "35": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 34,
+ "id": 35,
"input_connections": {
"infile": {
- "id": 26,
+ "id": 27,
"output_name": "stats"
}
},
@@ -1584,12 +1653,12 @@
"when": null,
"workflow_outputs": []
},
- "35": {
+ "36": {
"annotation": "",
- "id": 35,
+ "id": 36,
"input_connections": {
"gfa_stats": {
- "id": 27,
+ "id": 28,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -1966,12 +2035,12 @@
"when": null,
"workflow_outputs": []
},
- "36": {
+ "37": {
"annotation": "",
- "id": 36,
+ "id": 37,
"input_connections": {
"gfa_stats": {
- "id": 29,
+ "id": 30,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -2348,14 +2417,14 @@
"when": null,
"workflow_outputs": []
},
- "37": {
+ "38": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
"errors": null,
- "id": 37,
+ "id": 38,
"input_connections": {
"infile": {
- "id": 31,
+ "id": 32,
"output_name": "output"
}
},
@@ -2408,14 +2477,14 @@
}
]
},
- "38": {
+ "39": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
"errors": null,
- "id": 38,
+ "id": 39,
"input_connections": {
"infile": {
- "id": 32,
+ "id": 33,
"output_name": "output"
}
},
@@ -2468,18 +2537,18 @@
}
]
},
- "39": {
+ "40": {
"annotation": "",
"content_id": "join1",
"errors": null,
- "id": 39,
+ "id": 40,
"input_connections": {
"input1": {
- "id": 34,
+ "id": 35,
"output_name": "outfile"
},
"input2": {
- "id": 33,
+ "id": 34,
"output_name": "outfile"
}
},
@@ -2511,27 +2580,27 @@
"when": null,
"workflow_outputs": []
},
- "40": {
+ "41": {
"annotation": "",
- "id": 40,
+ "id": 41,
"input_connections": {
"Alternate data": {
- "id": 35,
+ "id": 36,
"input_subworkflow_step_id": 1,
"output_name": "gfastats data for plotting"
},
"Name of alternate assembly": {
- "id": 7,
+ "id": 8,
"input_subworkflow_step_id": 3,
"output_name": "output"
},
"Name of primary assembly": {
- "id": 6,
+ "id": 7,
"input_subworkflow_step_id": 2,
"output_name": "output"
},
"Primary data": {
- "id": 36,
+ "id": 37,
"input_subworkflow_step_id": 0,
"output_name": "gfastats data for plotting"
}
@@ -3054,19 +3123,23 @@
}
]
},
- "41": {
+ "42": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0",
"errors": null,
- "id": 41,
+ "id": 42,
"input_connections": {
"input": {
- "id": 37,
+ "id": 38,
"output_name": "output"
},
- "lineage|lineage_dataset": {
+ "lineage_conditional|cached_db": {
"id": 5,
"output_name": "output"
+ },
+ "lineage|lineage_dataset": {
+ "id": 6,
+ "output_name": "output"
}
},
"inputs": [],
@@ -3142,16 +3215,16 @@
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "5.5.0+galaxy0",
"type": "tool",
"uuid": "08066bc3-0992-4606-844d-16be3c56691a",
"when": null,
"workflow_outputs": [
{
- "label": "Busco Summary Image Hap2",
- "output_name": "summary_image",
- "uuid": "84725fc4-3480-44a2-abc0-abc8f54addb1"
+ "label": "Busco Gff File - Hap2",
+ "output_name": "busco_gff",
+ "uuid": "3b8e8b67-ad7d-4d30-a253-e601d3e201d2"
},
{
"label": "Busco Summary Hap2",
@@ -3159,24 +3232,24 @@
"uuid": "bf7e959c-5252-467e-bb58-2b8cabbd0f3b"
},
{
- "label": "Busco Gff File - Hap2",
- "output_name": "busco_gff",
- "uuid": "3b8e8b67-ad7d-4d30-a253-e601d3e201d2"
+ "label": "Busco Summary Image Hap2",
+ "output_name": "summary_image",
+ "uuid": "84725fc4-3480-44a2-abc0-abc8f54addb1"
}
]
},
- "42": {
+ "43": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy4",
"errors": null,
- "id": 42,
+ "id": 43,
"input_connections": {
"mode|assembly_options|assembly_01": {
- "id": 38,
+ "id": 39,
"output_name": "output"
},
"mode|assembly_options|assembly_02": {
- "id": 37,
+ "id": 38,
"output_name": "output"
},
"mode|meryldb_F1": {
@@ -3282,6 +3355,11 @@
"uuid": "9985e575-3113-4c2c-bc2c-78faab3a1291",
"when": null,
"workflow_outputs": [
+ {
+ "label": "Merqury Stats",
+ "output_name": "stats_files",
+ "uuid": "22a82fae-74cf-4024-9815-ba6a9892aac3"
+ },
{
"label": "Merqury images",
"output_name": "png_files",
@@ -3296,27 +3374,26 @@
"label": "Merqury QV",
"output_name": "qv_files",
"uuid": "5ba07c29-6ca5-42bd-a1e8-f4f6a35c3814"
- },
- {
- "label": "Merqury Stats",
- "output_name": "stats_files",
- "uuid": "22a82fae-74cf-4024-9815-ba6a9892aac3"
}
]
},
- "43": {
+ "44": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0",
"errors": null,
- "id": 43,
+ "id": 44,
"input_connections": {
"input": {
- "id": 38,
+ "id": 39,
"output_name": "output"
},
- "lineage|lineage_dataset": {
+ "lineage_conditional|cached_db": {
"id": 5,
"output_name": "output"
+ },
+ "lineage|lineage_dataset": {
+ "id": 6,
+ "output_name": "output"
}
},
"inputs": [],
@@ -3345,8 +3422,8 @@
}
],
"position": {
- "left": 2568.723853333207,
- "top": 1078.3517946538443
+ "left": 2599.0485857103813,
+ "top": 1053.6223175775656
},
"post_job_actions": {
"TagDatasetActionbusco_gff": {
@@ -3392,16 +3469,16 @@
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "5.5.0+galaxy0",
"type": "tool",
"uuid": "a4957dee-45cc-4f34-ae2e-e07f93b9fcc4",
"when": null,
"workflow_outputs": [
{
- "label": "Busco Summary Image Hap1",
- "output_name": "summary_image",
- "uuid": "cfac3083-4c1e-4bb4-91a5-eba5d19f2757"
+ "label": "Busco Summary Hap1",
+ "output_name": "busco_sum",
+ "uuid": "bd6443ea-5266-4dfc-8f1e-aded27317da8"
},
{
"label": "Busco Gff File - Hap1",
@@ -3409,20 +3486,20 @@
"uuid": "ba26cb24-25d4-4669-982c-abe4816753a6"
},
{
- "label": "Busco Summary Hap1",
- "output_name": "busco_sum",
- "uuid": "bd6443ea-5266-4dfc-8f1e-aded27317da8"
+ "label": "Busco Summary Image Hap1",
+ "output_name": "summary_image",
+ "uuid": "cfac3083-4c1e-4bb4-91a5-eba5d19f2757"
}
]
},
- "44": {
+ "45": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1",
"errors": null,
- "id": 44,
+ "id": 45,
"input_connections": {
"input": {
- "id": 39,
+ "id": 40,
"output_name": "out_file1"
}
},
@@ -3475,14 +3552,14 @@
}
]
},
- "45": {
+ "46": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 45,
+ "id": 46,
"input_connections": {
"input": {
- "id": 42,
+ "id": 43,
"output_name": "png_files"
}
},
@@ -3520,14 +3597,14 @@
}
]
},
- "46": {
+ "47": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 46,
+ "id": 47,
"input_connections": {
"input": {
- "id": 42,
+ "id": 43,
"output_name": "png_files"
}
},
@@ -3565,14 +3642,14 @@
}
]
},
- "47": {
+ "48": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 47,
+ "id": 48,
"input_connections": {
"input": {
- "id": 42,
+ "id": 43,
"output_name": "qv_files"
}
},
@@ -3610,14 +3687,14 @@
}
]
},
- "48": {
+ "49": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 48,
+ "id": 49,
"input_connections": {
"input": {
- "id": 42,
+ "id": 43,
"output_name": "png_files"
}
},
@@ -3655,14 +3732,14 @@
}
]
},
- "49": {
+ "50": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 49,
+ "id": 50,
"input_connections": {
"input": {
- "id": 42,
+ "id": 43,
"output_name": "stats_files"
}
},
@@ -3700,14 +3777,14 @@
}
]
},
- "50": {
+ "51": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 50,
+ "id": 51,
"input_connections": {
"input": {
- "id": 42,
+ "id": 43,
"output_name": "png_files"
}
},
@@ -3745,14 +3822,14 @@
}
]
},
- "51": {
+ "52": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"errors": null,
- "id": 51,
+ "id": 52,
"input_connections": {
"infile": {
- "id": 44,
+ "id": 45,
"output_name": "output"
}
},
@@ -3801,6 +3878,6 @@
"VGP",
"Reviewed"
],
- "uuid": "4135d455-ac66-4d86-b4a3-643580ff877f",
- "version": 5
-}
+ "uuid": "cb0e2983-13df-451c-85a2-ee78c94a2bd2",
+ "version": 1
+}
\ No newline at end of file
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/CHANGELOG.md b/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/CHANGELOG.md
index 06dad0676..048600877 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-HiC-phasing-VGP4/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## [0.2.2] 2024-08-07
+
+- Expose parameter: Busco lineage database
+
## [0.2.1] 2024-07-29
### Automatic update
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/Assembly-Hifi-Trio-phasing-VGP5-tests.yml b/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/Assembly-Hifi-Trio-phasing-VGP5-tests.yml
index 1300eae42..8b77724e8 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/Assembly-Hifi-Trio-phasing-VGP5-tests.yml
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/Assembly-Hifi-Trio-phasing-VGP5-tests.yml
@@ -52,6 +52,7 @@
Bits for bloom filter: 32
Name for Haplotype 1: Hap1
Name for Haplotype 2: Hap2
+ Database for Busco Lineage: v5
Lineage: vertebrata_odb10
outputs:
Estimated Genome size: 2288021
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/Assembly-Hifi-Trio-phasing-VGP5.ga b/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/Assembly-Hifi-Trio-phasing-VGP5.ga
index f13aee696..d9b21ec9f 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/Assembly-Hifi-Trio-phasing-VGP5.ga
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/Assembly-Hifi-Trio-phasing-VGP5.ga
@@ -15,8 +15,11 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release": "0.1.8",
+ "release": "0.2",
"name": "Assembly-Hifi-Trio-phasing-VGP5",
+ "report": {
+ "markdown": "\n# Workflow Execution Report\n\nTime workflow was invoked:\n\n```galaxy\ninvocation_time()\n```\nGalaxy version :\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Raw unitig graph\n\n```galaxy\nhistory_dataset_as_image(output=\"raw unitig graph image\")\n```\n\n## Merqury results\n\n### Merqury QV\n\n```galaxy\nhistory_dataset_as_table(output=merqury_stats)\n```\n\n### Merqury completeness\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_stats\")\n```\n\n### Merqury plots\n\n\nspectra-cn:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-cn.fl\")\n```\n\nspectra-asm:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-asm.fl\")\n```\n\n\nhap1 spectra-cn:\n\n\r\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_01.spectra-cn.fl\")\n```\r\n\n\nhap2 spectra-cn:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_02.spectra-cn.fl\")\n```\n\n## BUSCO results (Vertebrata database)\n\nHap1\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco Summary Image Hap1\")\n```\n\nHap2\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco Summary Image Hap2\")\n```\n\n## Assembly statistics\n\n\n```galaxy\nhistory_dataset_as_table(output=\"clean_stats\")\n```\n\n\n## Nx and Size plots\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Nx Plot\")\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Size Plot\")\n```\n\n\n\n## Current Workflow\n```galaxy\nworkflow_display()\n```\n"
+ },
"steps": {
"0": {
"annotation": "",
@@ -196,8 +199,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 16.973703852699934,
- "top": 875.4758102675167
+ "left": 14.278967454027603,
+ "top": 893.0522085856591
},
"tool_id": null,
"tool_state": "{\"default\": 37, \"parameter_type\": \"integer\", \"optional\": true}",
@@ -205,14 +208,53 @@
"type": "parameter_input",
"uuid": "a5987ed3-6fdb-49c7-92d0-5b2f78a9bbb9",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "1bb5df96-d731-4e12-b902-ec6e1d723b07"
+ }
+ ]
},
"7": {
- "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis",
+ "annotation": "",
"content_id": null,
"errors": null,
"id": 7,
"input_connections": {},
+ "inputs": [
+ {
+ "description": "",
+ "name": "Database for Busco Lineage"
+ }
+ ],
+ "label": "Database for Busco Lineage",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 28.142955132748718,
+ "top": 1078.9295496884674
+ },
+ "tool_id": null,
+ "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "ca553be3-e5c9-4770-bd61-d50ed05c69ae",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "9829d67c-d793-44c9-9b53-9c3ebd2155a8"
+ }
+ ]
+ },
+ "8": {
+ "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis",
+ "content_id": null,
+ "errors": null,
+ "id": 8,
+ "input_connections": {},
"inputs": [
{
"description": "Taxonomic lineage for the organism being assembled for Busco analysis",
@@ -223,8 +265,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 36.34366195032787,
- "top": 998.1239416236981
+ "left": 61.152110333438976,
+ "top": 1189.4200518565176
},
"tool_id": null,
"tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
@@ -232,13 +274,19 @@
"type": "parameter_input",
"uuid": "9762d451-eb6f-4f0c-8203-7094f46ea771",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "9dff2868-bf8a-4443-87c9-52f5b8975bdb"
+ }
+ ]
},
- "8": {
+ "9": {
"annotation": "If empty, read coverage will be estimated from the Genomescope parameters. ",
"content_id": null,
"errors": null,
- "id": 8,
+ "id": 9,
"input_connections": {},
"inputs": [
{
@@ -250,8 +298,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 65.73786407849795,
- "top": 1111.7501052118992
+ "left": 98.92882500063175,
+ "top": 1275.4014318043698
},
"tool_id": null,
"tool_state": "{\"parameter_type\": \"integer\", \"optional\": true}",
@@ -259,13 +307,19 @@
"type": "parameter_input",
"uuid": "ffcf874f-594d-4d58-99dc-73ef566bcc88",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "28a260f0-a63e-4743-ba41-6544e4f423a9"
+ }
+ ]
},
- "9": {
+ "10": {
"annotation": "GenomeScope model parameters generated by K-mer profiling workflow",
"content_id": null,
"errors": null,
- "id": 9,
+ "id": 10,
"input_connections": {},
"inputs": [
{
@@ -277,8 +331,8 @@
"name": "Input dataset",
"outputs": [],
"position": {
- "left": 101.3532659049146,
- "top": 1219.9729028733702
+ "left": 146.82808789081685,
+ "top": 1368.9007539001223
},
"tool_id": null,
"tool_state": "{\"optional\": false, \"tag\": null}",
@@ -288,11 +342,11 @@
"when": null,
"workflow_outputs": []
},
- "10": {
+ "11": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 10,
+ "id": 11,
"input_connections": {},
"inputs": [
{
@@ -304,8 +358,8 @@
"name": "Input dataset",
"outputs": [],
"position": {
- "left": 150.24297371017008,
- "top": 1347.367362010912
+ "left": 217.51082966945373,
+ "top": 1473.9095926545822
},
"tool_id": null,
"tool_state": "{\"optional\": false, \"tag\": null}",
@@ -315,11 +369,11 @@
"when": null,
"workflow_outputs": []
},
- "11": {
+ "12": {
"annotation": "--trio-dual option",
"content_id": null,
"errors": null,
- "id": 11,
+ "id": 12,
"input_connections": {},
"inputs": [
{
@@ -331,8 +385,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 227.5310800942477,
- "top": 1472.080580726721
+ "left": 306.5808483755939,
+ "top": 1565.8147646057243
},
"tool_id": null,
"tool_state": "{\"default\": true, \"parameter_type\": \"boolean\", \"optional\": true}",
@@ -340,13 +394,19 @@
"type": "parameter_input",
"uuid": "eb8c0bcc-14c8-4b3d-b73f-442eae454b82",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "b178a102-00b1-45ae-8404-2c7c544cdeee"
+ }
+ ]
},
- "12": {
+ "13": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 12,
+ "id": 13,
"input_connections": {},
"inputs": [
{
@@ -367,13 +427,19 @@
"type": "data_input",
"uuid": "80ff22ac-1a58-4f89-bf52-48f18d8f71f9",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "c2cf45d3-af1d-49d6-9d77-41065f57fcdb"
+ }
+ ]
},
- "13": {
+ "14": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 13,
+ "id": 14,
"input_connections": {},
"inputs": [
{
@@ -394,13 +460,19 @@
"type": "parameter_input",
"uuid": "c5651e7e-31d4-41b7-a590-e2fadc7f59e9",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "ad235ad6-b670-4423-ac52-bbec7296f64a"
+ }
+ ]
},
- "14": {
+ "15": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 14,
+ "id": 15,
"input_connections": {},
"inputs": [
{
@@ -421,13 +493,19 @@
"type": "parameter_input",
"uuid": "1ae103f4-38e9-4414-8e46-b8a763159937",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "276bc5aa-1667-4b75-9dfa-52c1cea29d50"
+ }
+ ]
},
- "15": {
+ "16": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
- "id": 15,
+ "id": 16,
"input_connections": {
"library|input_1": {
"id": 0,
@@ -496,14 +574,14 @@
}
]
},
- "16": {
+ "17": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
"errors": null,
- "id": 16,
+ "id": 17,
"input_connections": {
"input": {
- "id": 9,
+ "id": 10,
"output_name": "output"
}
},
@@ -541,14 +619,14 @@
"when": null,
"workflow_outputs": []
},
- "17": {
+ "18": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"errors": null,
- "id": 17,
+ "id": 18,
"input_connections": {
"infile": {
- "id": 10,
+ "id": 11,
"output_name": "output"
}
},
@@ -586,14 +664,14 @@
"when": null,
"workflow_outputs": []
},
- "18": {
+ "19": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
"errors": null,
- "id": 18,
+ "id": 19,
"input_connections": {
"results_0|software_cond|input": {
- "id": 15,
+ "id": 16,
"output_name": "report"
}
},
@@ -628,26 +706,26 @@
"uuid": "b64b5b58-cf21-4fb6-af57-2e8a56e85142",
"when": null,
"workflow_outputs": [
- {
- "label": "multiqc html report",
- "output_name": "html_report",
- "uuid": "9bd9c4ff-97c3-4557-a550-a360207e08ab"
- },
{
"label": "cutadapt multiqc stats",
"output_name": "stats",
"uuid": "110b5141-3025-4ee6-8d4a-d4987fa6dfe5"
+ },
+ {
+ "label": "multiqc html report",
+ "output_name": "html_report",
+ "uuid": "9bd9c4ff-97c3-4557-a550-a360207e08ab"
}
]
},
- "19": {
+ "20": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 19,
+ "id": 20,
"input_connections": {
"input": {
- "id": 16,
+ "id": 17,
"output_name": "out_file1"
}
},
@@ -679,14 +757,14 @@
"when": null,
"workflow_outputs": []
},
- "20": {
+ "21": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"errors": null,
- "id": 20,
+ "id": 21,
"input_connections": {
"infile": {
- "id": 17,
+ "id": 18,
"output_name": "output"
}
},
@@ -724,14 +802,14 @@
"when": null,
"workflow_outputs": []
},
- "21": {
+ "22": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 21,
+ "id": 22,
"input_connections": {
"input1": {
- "id": 19,
+ "id": 20,
"output_name": "out_file1"
}
},
@@ -763,14 +841,14 @@
"when": null,
"workflow_outputs": []
},
- "22": {
+ "23": {
"annotation": "",
"content_id": "Convert characters1",
"errors": null,
- "id": 22,
+ "id": 23,
"input_connections": {
"input": {
- "id": 20,
+ "id": 21,
"output_name": "outfile"
}
},
@@ -802,18 +880,18 @@
"when": null,
"workflow_outputs": []
},
- "23": {
+ "24": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pick_value/pick_value/0.2.0",
"errors": null,
- "id": 23,
+ "id": 24,
"input_connections": {
"style_cond|type_cond|pick_from_0|value": {
- "id": 8,
+ "id": 9,
"output_name": "output"
},
"style_cond|type_cond|pick_from_1|value": {
- "id": 21,
+ "id": 22,
"output_name": "integer_param"
}
},
@@ -853,14 +931,14 @@
"when": null,
"workflow_outputs": []
},
- "24": {
+ "25": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 24,
+ "id": 25,
"input_connections": {
"input": {
- "id": 22,
+ "id": 23,
"output_name": "out_file1"
}
},
@@ -892,14 +970,14 @@
"when": null,
"workflow_outputs": []
},
- "25": {
+ "26": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/hifiasm/hifiasm/0.19.9+galaxy0",
"errors": null,
- "id": 25,
+ "id": 26,
"input_connections": {
"assembly_options|hom_cov": {
- "id": 23,
+ "id": 24,
"output_name": "integer_param"
},
"filter_bits": {
@@ -907,11 +985,11 @@
"output_name": "output"
},
"mode|reads": {
- "id": 15,
+ "id": 16,
"output_name": "out1"
},
"mode|trio_dual": {
- "id": 11,
+ "id": 12,
"output_name": "output"
},
"mode|trioinput|hap1_reads": {
@@ -1014,14 +1092,14 @@
"when": null,
"workflow_outputs": []
},
- "26": {
+ "27": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 26,
+ "id": 27,
"input_connections": {
"input1": {
- "id": 24,
+ "id": 25,
"output_name": "out_file1"
}
},
@@ -1068,18 +1146,18 @@
}
]
},
- "27": {
+ "28": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 27,
+ "id": 28,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "hap1_contigs"
},
"mode_condition|swiss_army_knife": {
- "id": 12,
+ "id": 13,
"output_name": "output"
}
},
@@ -1132,18 +1210,18 @@
}
]
},
- "28": {
+ "29": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 28,
+ "id": 29,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "hap2_contigs"
},
"mode_condition|swiss_army_knife": {
- "id": 12,
+ "id": 13,
"output_name": "output"
}
},
@@ -1196,14 +1274,14 @@
}
]
},
- "29": {
+ "30": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4",
"errors": null,
- "id": 29,
+ "id": 30,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "raw_unitigs_trio"
}
},
@@ -1241,20 +1319,26 @@
"type": "tool",
"uuid": "f9af6aa8-4ee4-4d4d-a54f-653881706285",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": "raw unitig graph image",
+ "output_name": "outfile",
+ "uuid": "c5d8c5b8-3d33-473d-96bc-cedd33d14786"
+ }
+ ]
},
- "30": {
+ "31": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 30,
+ "id": 31,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "hap1_contigs"
},
"mode_condition|swiss_army_knife": {
- "id": 12,
+ "id": 13,
"output_name": "output"
}
},
@@ -1321,18 +1405,18 @@
}
]
},
- "31": {
+ "32": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 31,
+ "id": 32,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "hap2_contigs"
},
"mode_condition|swiss_army_knife": {
- "id": 12,
+ "id": 13,
"output_name": "output"
}
},
@@ -1399,14 +1483,14 @@
}
]
},
- "32": {
+ "33": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 32,
+ "id": 33,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "hap1_contigs"
}
},
@@ -1446,14 +1530,14 @@
"when": null,
"workflow_outputs": []
},
- "33": {
+ "34": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 33,
+ "id": 34,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "hap2_contigs"
}
},
@@ -1493,18 +1577,18 @@
"when": null,
"workflow_outputs": []
},
- "34": {
+ "35": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 34,
+ "id": 35,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "hap2_contigs"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 26,
+ "id": 27,
"output_name": "integer_param"
}
},
@@ -1544,18 +1628,18 @@
"when": null,
"workflow_outputs": []
},
- "35": {
+ "36": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 35,
+ "id": 36,
"input_connections": {
"input_file": {
- "id": 25,
+ "id": 26,
"output_name": "hap1_contigs"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 26,
+ "id": 27,
"output_name": "integer_param"
}
},
@@ -1595,19 +1679,23 @@
"when": null,
"workflow_outputs": []
},
- "36": {
+ "37": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0",
"errors": null,
- "id": 36,
+ "id": 37,
"input_connections": {
"input": {
- "id": 30,
+ "id": 31,
"output_name": "output"
},
- "lineage|lineage_dataset": {
+ "lineage_conditional|cached_db": {
"id": 7,
"output_name": "output"
+ },
+ "lineage|lineage_dataset": {
+ "id": 8,
+ "output_name": "output"
}
},
"inputs": [],
@@ -1683,7 +1771,7 @@
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "5.5.0+galaxy0",
"type": "tool",
"uuid": "bc06da8e-e5cb-493e-98d1-c974a3e46cff",
@@ -1706,19 +1794,23 @@
}
]
},
- "37": {
+ "38": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0",
"errors": null,
- "id": 37,
+ "id": 38,
"input_connections": {
"input": {
- "id": 31,
+ "id": 32,
"output_name": "output"
},
- "lineage|lineage_dataset": {
+ "lineage_conditional|cached_db": {
"id": 7,
"output_name": "output"
+ },
+ "lineage|lineage_dataset": {
+ "id": 8,
+ "output_name": "output"
}
},
"inputs": [],
@@ -1747,8 +1839,8 @@
}
],
"position": {
- "left": 3389.03515625,
- "top": 1288.625
+ "left": 3652.9087639414856,
+ "top": 1832.782414405416
},
"post_job_actions": {
"TagDatasetActionbusco_gff": {
@@ -1794,22 +1886,22 @@
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "5.5.0+galaxy0",
"type": "tool",
"uuid": "4931c626-b636-43c3-b19b-3c778199b9a8",
"when": null,
"workflow_outputs": [
- {
- "label": "Busco Gff Hap2",
- "output_name": "busco_gff",
- "uuid": "948be37c-7cde-4c13-805c-2d9806380939"
- },
{
"label": "Busco Summary Image Hap2",
"output_name": "summary_image",
"uuid": "caf3c70a-11cf-468f-aab8-144a38880d07"
},
+ {
+ "label": "Busco Gff Hap2",
+ "output_name": "busco_gff",
+ "uuid": "948be37c-7cde-4c13-805c-2d9806380939"
+ },
{
"label": "Busco Summary Hap2",
"output_name": "busco_sum",
@@ -1817,18 +1909,18 @@
}
]
},
- "38": {
+ "39": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy4",
"errors": null,
- "id": 38,
+ "id": 39,
"input_connections": {
"mode|assembly_options|assembly_01": {
- "id": 30,
+ "id": 31,
"output_name": "output"
},
"mode|assembly_options|assembly_02": {
- "id": 31,
+ "id": 32,
"output_name": "output"
},
"mode|meryldb_F1": {
@@ -1882,8 +1974,8 @@
}
],
"position": {
- "left": 3900.5859375,
- "top": 1147.69140625
+ "left": 3990.2355401989075,
+ "top": 1314.0148504041067
},
"post_job_actions": {
"HideDatasetActionlog_file": {
@@ -1955,23 +2047,28 @@
"when": null,
"workflow_outputs": [
{
- "label": "Merqury Images",
- "output_name": "png_files",
- "uuid": "703f1b5c-9fd8-4f49-8dae-b5c3d0770738"
+ "label": "Merqury QV",
+ "output_name": "qv_files",
+ "uuid": "947a9ca1-437f-4003-9871-ad38e76a19f6"
},
{
"label": "Merqury Trio Histogram",
"output_name": "hist_files",
"uuid": "82446904-1649-4dbf-ba0d-48576419a32c"
+ },
+ {
+ "label": "Merqury Images",
+ "output_name": "png_files",
+ "uuid": "703f1b5c-9fd8-4f49-8dae-b5c3d0770738"
}
]
},
- "39": {
+ "40": {
"annotation": "",
- "id": 39,
+ "id": 40,
"input_connections": {
"gfa_stats": {
- "id": 32,
+ "id": 33,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -2348,12 +2445,12 @@
"when": null,
"workflow_outputs": []
},
- "40": {
+ "41": {
"annotation": "",
- "id": 40,
+ "id": 41,
"input_connections": {
"gfa_stats": {
- "id": 33,
+ "id": 34,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -2730,14 +2827,14 @@
"when": null,
"workflow_outputs": []
},
- "41": {
+ "42": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 41,
+ "id": 42,
"input_connections": {
"infile": {
- "id": 34,
+ "id": 35,
"output_name": "stats"
}
},
@@ -2751,8 +2848,8 @@
}
],
"position": {
- "left": 4299.765625,
- "top": 741.7890625
+ "left": 4294.579496270747,
+ "top": 669.0668107299717
},
"post_job_actions": {
"HideDatasetActionoutfile": {
@@ -2775,14 +2872,14 @@
"when": null,
"workflow_outputs": []
},
- "42": {
+ "43": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 42,
+ "id": 43,
"input_connections": {
"infile": {
- "id": 35,
+ "id": 36,
"output_name": "stats"
}
},
@@ -2820,27 +2917,297 @@
"when": null,
"workflow_outputs": []
},
- "43": {
+ "44": {
"annotation": "",
- "id": 43,
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 44,
+ "input_connections": {
+ "input": {
+ "id": 39,
+ "output_name": "qv_files"
+ }
+ },
+ "inputs": [],
+ "label": "merqury_qv",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 4601.312365069848,
+ "top": 1296.4801576959867
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "111081e7-8909-446e-a3b0-1f6fab8de92e",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "merqury_qv",
+ "output_name": "output",
+ "uuid": "cdbf5aec-670b-4da2-b6f2-f6608ae252f0"
+ }
+ ]
+ },
+ "45": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 45,
+ "input_connections": {
+ "input": {
+ "id": 39,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.spectra-cn.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 4595.0227870283525,
+ "top": 1419.242140314577
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.spectra-cn.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "be91dc83-4b56-42cf-95e0-3e44f68cac33",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.spectra-cn.fl",
+ "output_name": "output",
+ "uuid": "dbfe025a-b595-4f5e-80b6-1d94fb363f0c"
+ }
+ ]
+ },
+ "46": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 46,
+ "input_connections": {
+ "input": {
+ "id": 39,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.spectra-asm.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 4605.757916018367,
+ "top": 1590.818754817862
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.spectra-asm.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "dd0f7e82-6bf2-43c6-b53b-ccf00f34ca49",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.spectra-asm.fl",
+ "output_name": "output",
+ "uuid": "c34a15dc-3af9-4bb2-b08e-6c0eae63178f"
+ }
+ ]
+ },
+ "47": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 47,
+ "input_connections": {
+ "input": {
+ "id": 39,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.assembly_01.spectra-cn.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 4595.029655522313,
+ "top": 1757.5278966007343
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.assembly_01.spectra-cn.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "b0a8b7e9-b28c-4bb7-9f0f-53aa2b52ba4a",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.assembly_01.spectra-cn.fl",
+ "output_name": "output",
+ "uuid": "6241bc27-84fc-4694-aa64-7676ea130542"
+ }
+ ]
+ },
+ "48": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 48,
+ "input_connections": {
+ "input": {
+ "id": 39,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.assembly_02.spectra-cn.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 4601.294376157093,
+ "top": 1945.7697669515674
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.assembly_02.spectra-cn.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "6752c9bb-3633-4cc7-b505-45cf7264d6f1",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.assembly_02.spectra-cn.fl",
+ "output_name": "output",
+ "uuid": "761c07e7-fc3b-415b-a91a-ee6841355d54"
+ }
+ ]
+ },
+ "49": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 49,
+ "input_connections": {
+ "input": {
+ "id": 39,
+ "output_name": "stats_files"
+ }
+ },
+ "inputs": [],
+ "label": "merqury_stats",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 4605.861270498924,
+ "top": 2140.8315611990333
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.completeness\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "14c501db-2128-4e14-bca5-b8134897004e",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "merqury_stats",
+ "output_name": "output",
+ "uuid": "9b4d468d-235c-4d4b-b687-ee59343549df"
+ }
+ ]
+ },
+ "50": {
+ "annotation": "",
+ "id": 50,
"input_connections": {
"Alternate data": {
- "id": 40,
+ "id": 41,
"input_subworkflow_step_id": 1,
"output_name": "gfastats data for plotting"
},
"Name of alternate assembly": {
- "id": 14,
+ "id": 15,
"input_subworkflow_step_id": 3,
"output_name": "output"
},
"Name of primary assembly": {
- "id": 13,
+ "id": 14,
"input_subworkflow_step_id": 2,
"output_name": "output"
},
"Primary data": {
- "id": 39,
+ "id": 40,
"input_subworkflow_step_id": 0,
"output_name": "gfastats data for plotting"
}
@@ -3351,6 +3718,11 @@
"uuid": "bc14963b-acf4-4064-ad92-fbf7cad3730f",
"when": null,
"workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "2:output",
+ "uuid": "e9a8a219-63fb-40ef-a551-3b791b5df1aa"
+ },
{
"label": "Size Plot",
"output_name": "Size Plot",
@@ -3360,38 +3732,89 @@
"label": "Nx Plot",
"output_name": "Nx Plot",
"uuid": "4235c91f-2071-483e-b905-bed50bc53b05"
+ },
+ {
+ "label": null,
+ "output_name": "3:output",
+ "uuid": "be5226ca-0fad-4887-967c-5ada802be18c"
}
]
},
- "44": {
+ "51": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
+ "content_id": "join1",
"errors": null,
- "id": 44,
+ "id": 51,
"input_connections": {
- "infile1": {
- "id": 42,
+ "input1": {
+ "id": 43,
"output_name": "outfile"
},
- "infile2": {
- "id": 41,
+ "input2": {
+ "id": 42,
"output_name": "outfile"
}
},
"inputs": [],
"label": null,
- "name": "Join",
+ "name": "Join two Datasets",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 4618.30993263997,
+ "top": 35.10939711899408
+ },
+ "post_job_actions": {
+ "HideDatasetActionout_file1": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "out_file1"
+ }
+ },
+ "tool_id": "join1",
+ "tool_state": "{\"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"fill_empty\", \"__current_case__\": 1, \"fill_columns_by\": \"fill_unjoined_only\", \"do_fill_empty_columns\": {\"column_fill_type\": \"single_fill_value\", \"__current_case__\": 0, \"fill_value\": \".\"}}, \"header\": \"\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.1.3",
+ "type": "tool",
+ "uuid": "5c346836-f071-457a-844f-1a4c9739ccc7",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "52": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1",
+ "errors": null,
+ "id": 52,
+ "input_connections": {
+ "input": {
+ "id": 51,
+ "output_name": "out_file1"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Advanced Cut",
"outputs": [
{
"name": "output",
- "type": "input"
+ "type": "tabular"
}
],
"position": {
- "left": 4616.796875,
- "top": 331.6015625
+ "left": 5013.618579933229,
+ "top": 35.30375914453537
},
"post_job_actions": {
+ "RenameDatasetActionoutput": {
+ "action_arguments": {
+ "newname": "Assembly statistics for Hap1 and Hap2"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "output"
+ },
"TagDatasetActionoutput": {
"action_arguments": {
"tags": "gfastats_asm_hap1_hap2"
@@ -3400,23 +3823,74 @@
"output_name": "output"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1",
"tool_shed_repository": {
"changeset_revision": "fbf99087e067",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": true, \"ignore_case\": false, \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \"-a 1 -a 2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"delimiter\": \"\", \"colnames_option\": {\"header\": \"N\", \"__current_case__\": 1, \"list\": [\"3\"]}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "9.3+galaxy1",
"type": "tool",
- "uuid": "bf793e2c-2b1e-4b0e-8122-9f657a86bb25",
+ "uuid": "b6796224-1789-45fd-8392-3237462c9071",
"when": null,
"workflow_outputs": [
{
"label": "Assembly statistics for Hap1 and Hap2",
"output_name": "output",
- "uuid": "fbdd24e6-61b6-4a8f-8c05-d834e8dde2af"
+ "uuid": "473ae324-f8d1-43ee-b57c-9b1a8a9705ec"
+ }
+ ]
+ },
+ "53": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "errors": null,
+ "id": 53,
+ "input_connections": {
+ "infile": {
+ "id": 52,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Replace",
+ "outputs": [
+ {
+ "name": "outfile",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 5346.826883826449,
+ "top": 86.40715310618705
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutfile": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "outfile"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "tool_shed_repository": {
+ "changeset_revision": "fbf99087e067",
+ "name": "text_processing",
+ "owner": "bgruening",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#\", \"replace_pattern\": \"Number of\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "9.3+galaxy1",
+ "type": "tool",
+ "uuid": "68545a0f-7aa4-43e3-bf1a-5dcb75108c51",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "clean_stats",
+ "output_name": "outfile",
+ "uuid": "fe375d8e-3e97-4373-b3ac-0d2e409d0145"
}
]
}
@@ -3425,6 +3899,6 @@
"VGP",
"Reviewed"
],
- "uuid": "d8fd9266-a2f8-4a6e-9c12-8d312bdd2ca7",
- "version": 6
-}
+ "uuid": "3cacf798-0f32-43b9-82c0-2d8f76312c80",
+ "version": 8
+}
\ No newline at end of file
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/CHANGELOG.md b/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/CHANGELOG.md
index 353004091..084dab9b6 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-Trio-phasing-VGP5/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## [0.2] 2024-08-12
+
+### Added
+
+- Workflow report
+
+### Changed
+
+- Expose the Busco lineage database parameter
+- Fix a bug happening when merging assembly statistics : The presence of the '#' character caused the tables to join incorrectly, and the numbers did not match the metrics
+
## [0.1.8] 2024-07-22
### Automatic update
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/Assembly-Hifi-only-VGP3-tests.yml b/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/Assembly-Hifi-only-VGP3-tests.yml
index be09fe98d..f00fcbb5b 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/Assembly-Hifi-only-VGP3-tests.yml
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/Assembly-Hifi-only-VGP3-tests.yml
@@ -23,6 +23,7 @@
Bits for Hifiasm bloom filter: 32
SAK input file (Optional): null
Homozygous Read Coverage: null
+ Database for Busco Lineage: v5
Lineage: vertebrata_odb10
Name of primary assembly: Primary
Name of alternate assembly: Alternate
@@ -44,6 +45,10 @@
asserts:
has_line:
line: "# scaffolds 85"
+ Assembly statistics:
+ asserts:
+ has_line:
+ line: "# scaffolds 85 1"
Nx Plot:
asserts:
has_size:
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/Assembly-Hifi-only-VGP3.ga b/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/Assembly-Hifi-only-VGP3.ga
index 5651859cd..136b94576 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/Assembly-Hifi-only-VGP3.ga
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/Assembly-Hifi-only-VGP3.ga
@@ -15,8 +15,11 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release": "0.1.8",
+ "release": "0.2.1",
"name": "Assembly-Hifi-only-VGP3",
+ "report": {
+ "markdown": "\n# Workflow Execution Report\n\nTime workflow was invoked:\n\n```galaxy\ninvocation_time()\n```\nGalaxy version :\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Raw unitig graph\n\n```galaxy\nhistory_dataset_as_image(output=\"raw unitig graph image\")\n```\n\n## Merqury results\n\n### Merqury QV\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_qv\")\n```\n\n### Merqury completeness\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_stats\")\n```\n\n### Merqury plots\n\n\nspectra-cn:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-cn.fl\")\n```\n\nspectra-asm:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-asm.fl\")\n```\n\nhap1 spectra-cn:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_01.spectra-cn.fl\")\n```\n\n\n## BUSCO results (Vertebrata database)\n\n\n\n## Assembly statistics\n\n\n```galaxy\nhistory_dataset_as_table(output=\"clean_stats\")\n```\n\n\n## Nx and Size plots\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Nx Plot\")\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Size Plot\")\n```\n\n\n\n## Current Workflow\n```galaxy\nworkflow_display()\n```\n"
+ },
"steps": {
"0": {
"annotation": "",
@@ -181,11 +184,38 @@
"workflow_outputs": []
},
"6": {
- "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis",
+ "annotation": "",
"content_id": null,
"errors": null,
"id": 6,
"input_connections": {},
+ "inputs": [
+ {
+ "description": "",
+ "name": "Database for Busco Lineage"
+ }
+ ],
+ "label": "Database for Busco Lineage",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 422.96681360823476,
+ "top": 1352.5435082963184
+ },
+ "tool_id": null,
+ "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "af7ad6ad-2718-4a16-ad1f-6858b1b4fb50",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "7": {
+ "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis",
+ "content_id": null,
+ "errors": null,
+ "id": 7,
+ "input_connections": {},
"inputs": [
{
"description": "Taxonomic lineage for the organism being assembled for Busco analysis",
@@ -196,8 +226,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 432.9672084074356,
- "top": 1396.376653536473
+ "left": 500.2702810213637,
+ "top": 1472.6772609095954
},
"tool_id": null,
"tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
@@ -207,11 +237,11 @@
"when": null,
"workflow_outputs": []
},
- "7": {
+ "8": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 7,
+ "id": 8,
"input_connections": {},
"inputs": [
{
@@ -234,11 +264,11 @@
"when": null,
"workflow_outputs": []
},
- "8": {
+ "9": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 8,
+ "id": 9,
"input_connections": {},
"inputs": [
{
@@ -261,11 +291,11 @@
"when": null,
"workflow_outputs": []
},
- "9": {
+ "10": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 9,
+ "id": 10,
"input_connections": {},
"inputs": [
{
@@ -288,11 +318,11 @@
"when": null,
"workflow_outputs": []
},
- "10": {
+ "11": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
- "id": 10,
+ "id": 11,
"input_connections": {
"library|input_1": {
"id": 0,
@@ -348,11 +378,11 @@
"when": null,
"workflow_outputs": []
},
- "11": {
+ "12": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"errors": null,
- "id": 11,
+ "id": 12,
"input_connections": {
"infile": {
"id": 2,
@@ -393,11 +423,11 @@
"when": null,
"workflow_outputs": []
},
- "12": {
+ "13": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pick_value/pick_value/0.2.0",
"errors": null,
- "id": 12,
+ "id": 13,
"input_connections": {
"style_cond|type_cond|pick_from_0|value": {
"id": 3,
@@ -432,11 +462,11 @@
"when": null,
"workflow_outputs": []
},
- "13": {
+ "14": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
"errors": null,
- "id": 13,
+ "id": 14,
"input_connections": {
"input": {
"id": 5,
@@ -477,14 +507,14 @@
"when": null,
"workflow_outputs": []
},
- "14": {
+ "15": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
"errors": null,
- "id": 14,
+ "id": 15,
"input_connections": {
"results_0|software_cond|input": {
- "id": 10,
+ "id": 11,
"output_name": "report"
}
},
@@ -531,14 +561,14 @@
}
]
},
- "15": {
+ "16": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"errors": null,
- "id": 15,
+ "id": 16,
"input_connections": {
"infile": {
- "id": 11,
+ "id": 12,
"output_name": "output"
}
},
@@ -576,14 +606,14 @@
"when": null,
"workflow_outputs": []
},
- "16": {
+ "17": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 16,
+ "id": 17,
"input_connections": {
"input": {
- "id": 13,
+ "id": 14,
"output_name": "out_file1"
}
},
@@ -615,14 +645,14 @@
"when": null,
"workflow_outputs": []
},
- "17": {
+ "18": {
"annotation": "",
"content_id": "Convert characters1",
"errors": null,
- "id": 17,
+ "id": 18,
"input_connections": {
"input": {
- "id": 15,
+ "id": 16,
"output_name": "outfile"
}
},
@@ -654,14 +684,14 @@
"when": null,
"workflow_outputs": []
},
- "18": {
+ "19": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 18,
+ "id": 19,
"input_connections": {
"input1": {
- "id": 16,
+ "id": 17,
"output_name": "out_file1"
}
},
@@ -695,14 +725,14 @@
"when": null,
"workflow_outputs": []
},
- "19": {
+ "20": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 19,
+ "id": 20,
"input_connections": {
"input": {
- "id": 17,
+ "id": 18,
"output_name": "out_file1"
}
},
@@ -734,18 +764,18 @@
"when": null,
"workflow_outputs": []
},
- "20": {
+ "21": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pick_value/pick_value/0.2.0",
"errors": null,
- "id": 20,
+ "id": 21,
"input_connections": {
"style_cond|type_cond|pick_from_0|value": {
"id": 4,
"output_name": "output"
},
"style_cond|type_cond|pick_from_1|value": {
- "id": 18,
+ "id": 19,
"output_name": "integer_param"
}
},
@@ -785,14 +815,14 @@
"when": null,
"workflow_outputs": []
},
- "21": {
+ "22": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 21,
+ "id": 22,
"input_connections": {
"input1": {
- "id": 19,
+ "id": 20,
"output_name": "out_file1"
}
},
@@ -839,22 +869,22 @@
}
]
},
- "22": {
+ "23": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/hifiasm/hifiasm/0.19.9+galaxy0",
"errors": null,
- "id": 22,
+ "id": 23,
"input_connections": {
"assembly_options|hom_cov": {
- "id": 20,
+ "id": 21,
"output_name": "integer_param"
},
"filter_bits": {
- "id": 12,
+ "id": 13,
"output_name": "integer_param"
},
"mode|reads": {
- "id": 10,
+ "id": 11,
"output_name": "out1"
}
},
@@ -953,18 +983,71 @@
}
]
},
- "23": {
+ "24": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4",
+ "errors": null,
+ "id": 24,
+ "input_connections": {
+ "input_file": {
+ "id": 23,
+ "output_name": "raw_unitigs"
+ }
+ },
+ "inputs": [],
+ "label": "Raw Unitig Image",
+ "name": "Bandage Image",
+ "outputs": [
+ {
+ "name": "outfile",
+ "type": "jpg"
+ }
+ ],
+ "position": {
+ "left": 2210.498706500735,
+ "top": 14.534266196161356
+ },
+ "post_job_actions": {
+ "TagDatasetActionoutfile": {
+ "action_arguments": {
+ "tags": "utg_png"
+ },
+ "action_type": "TagDatasetAction",
+ "output_name": "outfile"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4",
+ "tool_shed_repository": {
+ "changeset_revision": "ddddce450736",
+ "name": "bandage",
+ "owner": "iuc",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"fontsize\": null, \"height\": \"2000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": false, \"names\": false, \"nodewidth\": \"25.0\", \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2022.09+galaxy4",
+ "type": "tool",
+ "uuid": "c072feab-30cb-4311-8a45-bc126bf82e51",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "raw unitig graph image",
+ "output_name": "outfile",
+ "uuid": "9a8feefa-ea89-402b-b2ab-336b417d5fa4"
+ }
+ ]
+ },
+ "25": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 23,
+ "id": 25,
"input_connections": {
"input_file": {
- "id": 22,
+ "id": 23,
"output_name": "alternate_contig_graph"
},
"mode_condition|swiss_army_knife": {
- "id": 7,
+ "id": 8,
"output_name": "output"
}
},
@@ -1017,18 +1100,18 @@
}
]
},
- "24": {
+ "26": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 24,
+ "id": 26,
"input_connections": {
"input_file": {
- "id": 22,
+ "id": 23,
"output_name": "primary_contig_graph"
},
"mode_condition|swiss_army_knife": {
- "id": 7,
+ "id": 8,
"output_name": "output"
}
},
@@ -1081,18 +1164,18 @@
}
]
},
- "25": {
+ "27": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 25,
+ "id": 27,
"input_connections": {
"input_file": {
- "id": 22,
+ "id": 23,
"output_name": "primary_contig_graph"
},
"mode_condition|swiss_army_knife": {
- "id": 7,
+ "id": 8,
"output_name": "output"
}
},
@@ -1152,18 +1235,18 @@
}
]
},
- "26": {
+ "28": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 26,
+ "id": 28,
"input_connections": {
"input_file": {
- "id": 22,
+ "id": 23,
"output_name": "alternate_contig_graph"
},
"mode_condition|swiss_army_knife": {
- "id": 7,
+ "id": 8,
"output_name": "output"
}
},
@@ -1223,18 +1306,18 @@
}
]
},
- "27": {
+ "29": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 27,
+ "id": 29,
"input_connections": {
"input_file": {
- "id": 22,
+ "id": 23,
"output_name": "primary_contig_graph"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 21,
+ "id": 22,
"output_name": "integer_param"
}
},
@@ -1280,18 +1363,18 @@
}
]
},
- "28": {
+ "30": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 28,
+ "id": 30,
"input_connections": {
"input_file": {
- "id": 22,
+ "id": 23,
"output_name": "alternate_contig_graph"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 21,
+ "id": 22,
"output_name": "integer_param"
}
},
@@ -1337,14 +1420,14 @@
}
]
},
- "29": {
+ "31": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 29,
+ "id": 31,
"input_connections": {
"input_file": {
- "id": 22,
+ "id": 23,
"output_name": "primary_contig_graph"
}
},
@@ -1389,14 +1472,14 @@
"when": null,
"workflow_outputs": []
},
- "30": {
+ "32": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 30,
+ "id": 32,
"input_connections": {
"input_file": {
- "id": 22,
+ "id": 23,
"output_name": "alternate_contig_graph"
}
},
@@ -1441,19 +1524,23 @@
"when": null,
"workflow_outputs": []
},
- "31": {
+ "33": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0",
"errors": null,
- "id": 31,
+ "id": 33,
"input_connections": {
"input": {
- "id": 25,
+ "id": 27,
"output_name": "output"
},
- "lineage|lineage_dataset": {
+ "lineage_conditional|cached_db": {
"id": 6,
"output_name": "output"
+ },
+ "lineage|lineage_dataset": {
+ "id": 7,
+ "output_name": "output"
}
},
"inputs": [],
@@ -1482,8 +1569,8 @@
}
],
"position": {
- "left": 3288.853530767185,
- "top": 1357.71484375
+ "left": 3757.7159709943294,
+ "top": 1426.3228945055312
},
"post_job_actions": {
"TagDatasetActionbusco_gff": {
@@ -1529,7 +1616,7 @@
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "5.5.0+galaxy0",
"type": "tool",
"uuid": "1cd23635-275c-411f-b91d-f53f2bb229cb",
@@ -1542,18 +1629,18 @@
}
]
},
- "32": {
+ "34": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy4",
"errors": null,
- "id": 32,
+ "id": 34,
"input_connections": {
"mode|assembly_options|assembly_01": {
- "id": 25,
+ "id": 27,
"output_name": "output"
},
"mode|assembly_options|assembly_02": {
- "id": 26,
+ "id": 28,
"output_name": "output"
},
"mode|meryldb_F1": {
@@ -1659,11 +1746,6 @@
"uuid": "da32529d-f84c-4af6-b443-eddfc1705d78",
"when": null,
"workflow_outputs": [
- {
- "label": "Merqury png",
- "output_name": "png_files",
- "uuid": "1040586b-b0aa-41c3-98e4-00ead4e43a5c"
- },
{
"label": "Merqury Histograms",
"output_name": "hist_files",
@@ -1673,17 +1755,22 @@
"label": "Merqury completeness stats",
"output_name": "stats_files",
"uuid": "640107ca-7175-4624-9851-33911c197b18"
+ },
+ {
+ "label": "Merqury png",
+ "output_name": "png_files",
+ "uuid": "1040586b-b0aa-41c3-98e4-00ead4e43a5c"
}
]
},
- "33": {
+ "35": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 33,
+ "id": 35,
"input_connections": {
"infile": {
- "id": 27,
+ "id": 29,
"output_name": "stats"
}
},
@@ -1721,14 +1808,14 @@
"when": null,
"workflow_outputs": []
},
- "34": {
+ "36": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 34,
+ "id": 36,
"input_connections": {
"infile": {
- "id": 28,
+ "id": 30,
"output_name": "stats"
}
},
@@ -1766,12 +1853,12 @@
"when": null,
"workflow_outputs": []
},
- "35": {
+ "37": {
"annotation": "",
- "id": 35,
+ "id": 37,
"input_connections": {
"gfa_stats": {
- "id": 29,
+ "id": 31,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -2148,12 +2235,12 @@
"when": null,
"workflow_outputs": []
},
- "36": {
+ "38": {
"annotation": "",
- "id": 36,
+ "id": 38,
"input_connections": {
"gfa_stats": {
- "id": 30,
+ "id": 32,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -2530,84 +2617,289 @@
"when": null,
"workflow_outputs": []
},
- "37": {
+ "39": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
+ "content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 37,
+ "id": 39,
"input_connections": {
- "infile1": {
- "id": 33,
- "output_name": "outfile"
- },
- "infile2": {
+ "input": {
"id": 34,
- "output_name": "outfile"
+ "output_name": "qv_files"
}
},
"inputs": [],
- "label": null,
- "name": "Join",
+ "label": "merqury_qv",
+ "name": "Extract dataset",
"outputs": [
{
"name": "output",
- "type": "input"
+ "type": "data"
}
],
"position": {
- "left": 4013.817886235935,
- "top": 560.9506301879883
+ "left": 3368.915208782228,
+ "top": 1378.4880425062945
},
"post_job_actions": {
- "TagDatasetActionoutput": {
- "action_arguments": {
- "tags": "gfastats_asm_pri_alt"
- },
- "action_type": "TagDatasetAction",
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
"output_name": "output"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
- "tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
- "name": "text_processing",
- "owner": "bgruening",
- "tool_shed": "toolshed.g2.bx.psu.edu"
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "22d65bf8-2507-44ab-862a-f9a319fb45a4",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "merqury_qv",
+ "output_name": "output",
+ "uuid": "392ff784-c7dc-4564-8f33-fd73b6cd4635"
+ }
+ ]
+ },
+ "40": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 40,
+ "input_connections": {
+ "input": {
+ "id": 34,
+ "output_name": "png_files"
+ }
},
- "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"na\", \"header\": true, \"ignore_case\": false, \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \"-a 1 -a 2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy1",
+ "inputs": [],
+ "label": "output_merqury.spectra-cn.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 3383.7818577068465,
+ "top": 1495.6596354006524
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.spectra-cn.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
"type": "tool",
- "uuid": "51346605-e7bd-4f0d-8a90-f595351c97c2",
+ "uuid": "a773ee61-4660-4e8a-8308-e33094c75299",
"when": null,
"workflow_outputs": [
{
- "label": "Assembly statistics",
+ "label": "output_merqury.spectra-cn.fl",
"output_name": "output",
- "uuid": "a91ae955-004c-4326-b68a-83067a7524d7"
+ "uuid": "c37f517e-c25d-44df-b2b6-926c5b1246cd"
}
]
},
- "38": {
+ "41": {
"annotation": "",
- "id": 38,
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 41,
"input_connections": {
- "Alternate data": {
+ "input": {
+ "id": 34,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.spectra-asm.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 3387.3075902982096,
+ "top": 1660.8402706956817
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.spectra-asm.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "45d20c6f-e68d-4f56-b82d-dad963673bd4",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.spectra-asm.fl",
+ "output_name": "output",
+ "uuid": "8505620c-0d68-4f62-b2e6-5d019e834ba7"
+ }
+ ]
+ },
+ "42": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 42,
+ "input_connections": {
+ "input": {
+ "id": 34,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.assembly_01.spectra-cn.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 3390.1728026881706,
+ "top": 1834.5536606231856
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.assembly_01.spectra-cn.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "976df436-bf6e-4586-b979-39d154a037e2",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.assembly_01.spectra-cn.fl",
+ "output_name": "output",
+ "uuid": "cc37b1d2-e371-47b4-9d66-837733c4c04b"
+ }
+ ]
+ },
+ "43": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 43,
+ "input_connections": {
+ "input": {
+ "id": 34,
+ "output_name": "stats_files"
+ }
+ },
+ "inputs": [],
+ "label": "merqury_stats",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 3684.797014458241,
+ "top": 1970.3126850008684
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.completeness\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "a5704471-f618-4dcc-b34f-81e6598e650d",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "merqury_stats",
+ "output_name": "output",
+ "uuid": "0dbd43e2-8b7a-47fb-aeb7-cb5abfccd98f"
+ }
+ ]
+ },
+ "44": {
+ "annotation": "",
+ "content_id": "join1",
+ "errors": null,
+ "id": 44,
+ "input_connections": {
+ "input1": {
+ "id": 35,
+ "output_name": "outfile"
+ },
+ "input2": {
"id": 36,
+ "output_name": "outfile"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Join two Datasets",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 4054.1211995685508,
+ "top": 281.72424025026436
+ },
+ "post_job_actions": {},
+ "tool_id": "join1",
+ "tool_state": "{\"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"fill_empty\", \"__current_case__\": 1, \"fill_columns_by\": \"fill_unjoined_only\", \"do_fill_empty_columns\": {\"column_fill_type\": \"single_fill_value\", \"__current_case__\": 0, \"fill_value\": \".\"}}, \"header\": \"\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.1.3",
+ "type": "tool",
+ "uuid": "3049cad6-465c-4726-8a99-e0ac18e119c7",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "45": {
+ "annotation": "",
+ "id": 45,
+ "input_connections": {
+ "Alternate data": {
+ "id": 38,
"input_subworkflow_step_id": 1,
"output_name": "gfastats data for plotting"
},
"Name of alternate assembly": {
- "id": 9,
+ "id": 10,
"input_subworkflow_step_id": 3,
"output_name": "output"
},
"Name of primary assembly": {
- "id": 8,
+ "id": 9,
"input_subworkflow_step_id": 2,
"output_name": "output"
},
"Primary data": {
- "id": 35,
+ "id": 37,
"input_subworkflow_step_id": 0,
"output_name": "gfastats data for plotting"
}
@@ -3118,15 +3410,126 @@
"uuid": "08a613ce-a4c1-46df-930c-153b491114d2",
"when": null,
"workflow_outputs": [
+ {
+ "label": "Size Plot",
+ "output_name": "Size Plot",
+ "uuid": "e46888e6-9ae3-4310-9639-de1cdfff1871"
+ },
{
"label": "Nx Plot",
"output_name": "Nx Plot",
"uuid": "e34782d2-17d1-4598-92d1-93ca3d7ec7dc"
+ }
+ ]
+ },
+ "46": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1",
+ "errors": null,
+ "id": 46,
+ "input_connections": {
+ "input": {
+ "id": 44,
+ "output_name": "out_file1"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Advanced Cut",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 4479.7665298216425,
+ "top": 303.2318241078274
+ },
+ "post_job_actions": {
+ "RenameDatasetActionoutput": {
+ "action_arguments": {
+ "newname": "Assembly statistics"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "output"
},
+ "TagDatasetActionoutput": {
+ "action_arguments": {
+ "tags": "gfastats_asm_pri_alt"
+ },
+ "action_type": "TagDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1",
+ "tool_shed_repository": {
+ "changeset_revision": "fbf99087e067",
+ "name": "text_processing",
+ "owner": "bgruening",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"delimiter\": \"\", \"colnames_option\": {\"header\": \"N\", \"__current_case__\": 1, \"list\": [\"3\"]}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "9.3+galaxy1",
+ "type": "tool",
+ "uuid": "3470d58d-da54-43ef-842c-acfee1b35a56",
+ "when": null,
+ "workflow_outputs": [
{
- "label": "Size Plot",
- "output_name": "Size Plot",
- "uuid": "e46888e6-9ae3-4310-9639-de1cdfff1871"
+ "label": "Assembly statistics",
+ "output_name": "output",
+ "uuid": "323d0ecc-1fec-4126-94de-1f0deb6b6880"
+ }
+ ]
+ },
+ "47": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "errors": null,
+ "id": 47,
+ "input_connections": {
+ "infile": {
+ "id": 46,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Replace",
+ "outputs": [
+ {
+ "name": "outfile",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 4748.6890863468225,
+ "top": 495.54555212695516
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutfile": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "outfile"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "tool_shed_repository": {
+ "changeset_revision": "fbf99087e067",
+ "name": "text_processing",
+ "owner": "bgruening",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#\", \"replace_pattern\": \"Number of\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "9.3+galaxy1",
+ "type": "tool",
+ "uuid": "ec90b8f9-bcc2-4b8a-88ee-03b3e19979ba",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "clean_stats",
+ "output_name": "outfile",
+ "uuid": "365867c1-fec9-4c10-8b31-3f615992910a"
}
]
}
@@ -3135,6 +3538,6 @@
"VGP",
"Reviewed"
],
- "uuid": "f6f4cac5-6900-440b-8f1d-52420f635420",
+ "uuid": "2988562a-fa7a-4135-bf67-943ab03d1517",
"version": 1
-}
+}
\ No newline at end of file
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/CHANGELOG.md b/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/CHANGELOG.md
index d755205a9..cac117d0b 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/CHANGELOG.md
@@ -1,5 +1,20 @@
# Changelog
+## [0.2.1] 2024-08-13
+
+- Expose Busco lineage database parameter
+
+## [0.2] 2024-08-01
+
+### Added
+
+- Add bandage image
+- Add workflow report
+
+### Changed
+
+- Fix bug in merging assembly statistics
+
## [0.1.8] 2024-07-22
### Automatic update
diff --git a/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/README.md b/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/README.md
index 47180d7c5..8d24d78ca 100644
--- a/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/README.md
+++ b/workflows/VGP-assembly-v2/Assembly-Hifi-only-VGP3/README.md
@@ -1,26 +1,29 @@
-## Contiging Solo w/HiC:
+## Contiging Solo:
-Generate phased assembly based on PacBio Hifi Reads using HiC data from the same individual for phasing.
+Generate assembly based on PacBio Hifi Reads.
### Inputs
1. Hifi long reads [fastq]
-2. HiC forward reads (if multiple input files, concatenated in same order as reverse reads) [fastq]
-3. HiC reverse reads (if multiple input files, concatenated in same order as forward reads) [fastq]
-4. K-mer database [meryldb]
-5. Genome profile summary generated by Genomescope [txt]
-6. Name of first assembly
-7. Name of second assembly
+2. K-mer database [meryldb]
+3. Genome profile summary generated by Genomescope [txt]
+4. Homozygous Read Coverage. Optional, use if you think the estimation from Genomescope is inacurate.
+5. Genomescope Model Parameters generated by Genomescope [tabular]
+6. Database for busco lineage (recommended: latest)
+7. Busco lineage (recommended: vertebrata)
+8. Name of first assembly
+9. Name of second assembly
### Outputs
-1. Haplotype 1 assembly
-2. Haplotype 2 assembly
-3. QC: BUSCO report for both assemblies
-4. QC: Merqury report for both assemblies
-5. QC: Assembly statistics for both assemblies
-6. QC: Nx plot for both assemblies
-7. QC: Size plot for both assemblie
+1. Primary assembly
+2. Alternate assembly
+3. QC: Bandage image for the raw unitigs
+4. QC: BUSCO report for both assemblies
+5. QC: Merqury report for both assemblies
+6. QC: Assembly statistics for both assemblies
+7. QC: Nx plot for both assemblies
+8. QC: Size plot for both assemblie
diff --git a/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/Assembly-decontamination-VGP9-tests.yml b/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/Assembly-decontamination-VGP9-tests.yml
index e0f853eb5..9ad050ede 100644
--- a/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/Assembly-decontamination-VGP9-tests.yml
+++ b/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/Assembly-decontamination-VGP9-tests.yml
@@ -2,16 +2,20 @@
job:
Scaffolded assembly (fasta):
class: File
- location: https://zenodo.org/records/10067431/files/Scaffolded_assembly.fasta?download=1
+ location: https://zenodo.org/records/13327557/files/Scaffolded_assembly.fasta?download=1
filetype: fasta
Database for Kraken2: viral2019-03
outputs:
- full contaminant + mito scaffold list:
- file: test-data/full contaminant + mito scaffold list.txt
- compare: diff
- sort: true
+ mito_scaff_names:
+ asserts:
+ has_text:
+ text: "scaffold_82"
final decontaminated assembly:
decompress: true
asserts:
not_has_text:
- text: "_1100"
+ text: "scaffold_200"
+ contaminants_table:
+ asserts:
+ has_text:
+ text: "scaffold_200"
diff --git a/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/Assembly-decontamination-VGP9.ga b/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/Assembly-decontamination-VGP9.ga
index b83991631..4e2cbc599 100644
--- a/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/Assembly-decontamination-VGP9.ga
+++ b/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/Assembly-decontamination-VGP9.ga
@@ -11,8 +11,11 @@
],
"format-version": "0.1",
"license": "BSD-3-Clause",
- "release": "0.1.6",
+ "release": "0.3",
"name": "Assembly-decontamination-VGP9",
+ "report": {
+ "markdown": "\n# Workflow Execution Report\n\n### Worflow ran on: \n\n```galaxy\ninvocation_time()\n```\n\n# List of contaminants\n\n\r\n```galaxy\nhistory_dataset_as_table(output=\"contaminants_table\")\n```\r\n\n\n# List of Mitochondrial scaffolds\n\r\n```galaxy\nhistory_dataset_as_table(output=\"mito_scaff_names\")\n```\r\n\n\n\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n"
+ },
"steps": {
"0": {
"annotation": "",
@@ -30,8 +33,8 @@
"name": "Input dataset",
"outputs": [],
"position": {
- "left": 0,
- "top": 431.99609375
+ "left": 0.0,
+ "top": 573.2100224386197
},
"tool_id": null,
"tool_state": "{\"optional\": false, \"format\": [\"fasta\"], \"tag\": null}",
@@ -57,8 +60,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 72.984375,
- "top": 545.19140625
+ "left": 0.5475811709443406,
+ "top": 692.7734375
},
"tool_id": null,
"tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
@@ -70,65 +73,18 @@
{
"label": null,
"output_name": "output",
- "uuid": "342dd6ab-f498-4a16-805f-3b7761497e91"
+ "uuid": "34f0edb5-742e-4de2-923f-1fb93e511ca9"
}
]
},
"2": {
- "annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
- "errors": null,
- "id": 2,
- "input_connections": {
- "infile": {
- "id": 0,
- "output_name": "output"
- }
- },
- "inputs": [],
- "label": "lower to uppercase",
- "name": "Text transformation",
- "outputs": [
- {
- "name": "output",
- "type": "input"
- }
- ],
- "position": {
- "left": 342.8125,
- "top": 227.6796875
- },
- "post_job_actions": {
- "ChangeDatatypeActionoutput": {
- "action_arguments": {
- "newtype": "fasta"
- },
- "action_type": "ChangeDatatypeAction",
- "output_name": "output"
- }
- },
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
- "tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
- "name": "text_processing",
- "owner": "bgruening",
- "tool_shed": "toolshed.g2.bx.psu.edu"
- },
- "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"s/.*/\\\\U&/\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy1",
- "type": "tool",
- "uuid": "b9b3d9b9-1716-486d-b65c-b0fb196cbc01",
- "when": null,
- "workflow_outputs": []
- },
- "3": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_dustmasker_wrapper/2.14.1+galaxy2",
"errors": null,
- "id": 3,
+ "id": 2,
"input_connections": {
"db_opts|subject": {
- "id": 2,
+ "id": 0,
"output_name": "output"
}
},
@@ -142,10 +98,16 @@
}
],
"position": {
- "left": 652.953125,
- "top": 176.06640625
+ "left": 463.79758117094434,
+ "top": 292.69140625
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutfile": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "outfile"
+ }
},
- "post_job_actions": {},
"tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_dustmasker_wrapper/2.14.1+galaxy2",
"tool_shed_repository": {
"changeset_revision": "cbf3f518b668",
@@ -160,14 +122,14 @@
"when": null,
"workflow_outputs": []
},
- "4": {
+ "3": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
"errors": null,
- "id": 4,
+ "id": 3,
"input_connections": {
"infile": {
- "id": 3,
+ "id": 2,
"output_name": "outfile"
}
},
@@ -181,8 +143,8 @@
}
],
"position": {
- "left": 972.0078125,
- "top": 207.47265625
+ "left": 827.4147686709443,
+ "top": 312.24609375
},
"post_job_actions": {
"ChangeDatatypeActionoutput": {
@@ -191,34 +153,39 @@
},
"action_type": "ChangeDatatypeAction",
"output_name": "output"
+ },
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
}
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"s/[a-z]/N/g\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"/^>/!y/atcgn/NNNNN/\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "5089350b-c1a9-498a-9786-9864d484f77a",
"when": null,
"workflow_outputs": []
},
- "5": {
+ "4": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.3+galaxy1",
"errors": null,
- "id": 5,
+ "id": 4,
"input_connections": {
"kraken2_database": {
"id": 1,
"output_name": "output"
},
"single_paired|input_sequences": {
- "id": 4,
+ "id": 3,
"output_name": "output"
}
},
@@ -240,8 +207,8 @@
}
],
"position": {
- "left": 1372.5625,
- "top": 0
+ "left": 1300.1257061709443,
+ "top": 147.58203125
},
"post_job_actions": {
"HideDatasetActionunclassified_out_s": {
@@ -270,14 +237,14 @@
}
]
},
- "6": {
+ "5": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.14.1+galaxy2",
"errors": null,
- "id": 6,
+ "id": 5,
"input_connections": {
"query": {
- "id": 4,
+ "id": 3,
"output_name": "output"
}
},
@@ -291,8 +258,8 @@
}
],
"position": {
- "left": 1365.8984375,
- "top": 392.03515625
+ "left": 1293.4616436709443,
+ "top": 539.6171875
},
"post_job_actions": {},
"tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.14.1+galaxy2",
@@ -309,53 +276,53 @@
"when": null,
"workflow_outputs": []
},
- "7": {
+ "6": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
+ "content_id": "Cut1",
"errors": null,
- "id": 7,
+ "id": 6,
"input_connections": {
- "infile": {
- "id": 5,
- "output_name": "classified_out_s"
+ "input": {
+ "id": 4,
+ "output_name": "output"
}
},
"inputs": [],
- "label": "contaminant scaffolds",
- "name": "Search in textfiles",
+ "label": null,
+ "name": "Cut",
"outputs": [
{
- "name": "output",
- "type": "input"
+ "name": "out_file1",
+ "type": "tabular"
}
],
"position": {
- "left": 1727.8671875,
- "top": 57.37109375
+ "left": 1654.7624249209443,
+ "top": 53.078125
},
- "post_job_actions": {},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
- "tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
- "name": "text_processing",
- "owner": "bgruening",
- "tool_shed": "toolshed.g2.bx.psu.edu"
+ "post_job_actions": {
+ "HideDatasetActionout_file1": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "out_file1"
+ }
},
- "tool_state": "{\"case_sensitive\": \"-i\", \"color\": \"NOCOLOR\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"lines_after\": \"0\", \"lines_before\": \"0\", \"regex_type\": \"-G\", \"url_paste\": \"scaffold\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy1",
+ "tool_id": "Cut1",
+ "tool_state": "{\"columnList\": \"c1,c2,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.2",
"type": "tool",
- "uuid": "372a2507-7844-43e7-9be0-7add6d5f6def",
+ "uuid": "bb39eb8b-cad8-44f1-aa56-64a11d985e3c",
"when": null,
"workflow_outputs": []
},
- "8": {
+ "7": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/parse_mito_blast/parse_mito_blast/1.0.2+galaxy0",
"errors": null,
- "id": 8,
+ "id": 7,
"input_connections": {
"blastout": {
- "id": 6,
+ "id": 5,
"output_name": "output1"
}
},
@@ -373,8 +340,8 @@
}
],
"position": {
- "left": 1741,
- "top": 369.26171875
+ "left": 1821.3783868183484,
+ "top": 482.19337215633186
},
"post_job_actions": {},
"tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/parse_mito_blast/parse_mito_blast/1.0.2+galaxy0",
@@ -389,147 +356,119 @@
"type": "tool",
"uuid": "4350e47a-2394-4381-a274-e238985195df",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": "mito_scaff_names",
+ "output_name": "mito_scaff_names",
+ "uuid": "1478af1e-52f4-48fe-b966-0a61e2014a58"
+ }
+ ]
},
- "9": {
+ "8": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
+ "content_id": "Filter1",
"errors": null,
- "id": 9,
+ "id": 8,
"input_connections": {
- "infile": {
- "id": 7,
- "output_name": "output"
+ "input": {
+ "id": 6,
+ "output_name": "out_file1"
}
},
"inputs": [],
- "label": "remove > + lowercase",
- "name": "Text transformation",
+ "label": null,
+ "name": "Filter",
"outputs": [
{
- "name": "output",
+ "name": "out_file1",
"type": "input"
}
],
"position": {
- "left": 2061.3515625,
- "top": 85.98828125
+ "left": 2001.9694561709443,
+ "top": 0
},
"post_job_actions": {
- "ChangeDatatypeActionoutput": {
+ "HideDatasetActionout_file1": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "out_file1"
+ },
+ "RenameDatasetActionout_file1": {
"action_arguments": {
- "newtype": "csv"
+ "newname": "List of contaminants"
},
- "action_type": "ChangeDatatypeAction",
- "output_name": "output"
+ "action_type": "RenameDatasetAction",
+ "output_name": "out_file1"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
- "tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
- "name": "text_processing",
- "owner": "bgruening",
- "tool_shed": "toolshed.g2.bx.psu.edu"
- },
- "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"s/>//g\\ns/[A-Z]/\\\\L&/g\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy1",
+ "tool_id": "Filter1",
+ "tool_state": "{\"cond\": \"c1!='U'\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.1.1",
"type": "tool",
- "uuid": "f11170d4-82b0-4582-902e-133de9c17218",
+ "uuid": "f5d80335-9b98-40ca-b706-4bb54d9801e6",
"when": null,
- "workflow_outputs": []
- },
- "10": {
- "annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
- "errors": null,
- "id": 10,
- "input_connections": {
- "infile": {
- "id": 8,
- "output_name": "mito_scaff_names"
- }
- },
- "inputs": [],
- "label": "to lowercase",
- "name": "Text transformation",
- "outputs": [
+ "workflow_outputs": [
{
- "name": "output",
- "type": "input"
+ "label": "contaminants_table",
+ "output_name": "out_file1",
+ "uuid": "64156e28-aaf0-4578-9a7e-d6d21774c2c8"
}
- ],
- "position": {
- "left": 2259.0390625,
- "top": 370.75390625
- },
- "post_job_actions": {},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1",
- "tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
- "name": "text_processing",
- "owner": "bgruening",
- "tool_shed": "toolshed.g2.bx.psu.edu"
- },
- "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"s/[A-Z]/\\\\L&/g\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy1",
- "type": "tool",
- "uuid": "0c4be94e-a0a5-46e7-a586-e45ce92411d2",
- "when": null,
- "workflow_outputs": []
+ ]
},
- "11": {
+ "9": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "content_id": "Cut1",
"errors": null,
- "id": 11,
+ "id": 9,
"input_connections": {
- "infile": {
- "id": 9,
- "output_name": "output"
+ "input": {
+ "id": 8,
+ "output_name": "out_file1"
}
},
"inputs": [],
- "label": "isolate scaffolds names ",
- "name": "Replace",
+ "label": null,
+ "name": "Cut",
"outputs": [
{
- "name": "outfile",
- "type": "input"
+ "name": "out_file1",
+ "type": "tabular"
}
],
"position": {
- "left": 2321.61328125,
- "top": 195.1875
+ "left": 2237.4640689838916,
+ "top": 241.19478945940944
},
- "post_job_actions": {},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
- "tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
- "name": "text_processing",
- "owner": "bgruening",
- "tool_shed": "toolshed.g2.bx.psu.edu"
+ "post_job_actions": {
+ "HideDatasetActionout_file1": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "out_file1"
+ }
},
- "tool_state": "{\"caseinsensitive\": \"false\", \"find_and_replace\": [], \"find_pattern\": \"kraken:taxid\\\\|[0-9]+\", \"global\": \"true\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": \"true\", \"replace_pattern\": \"\", \"searchwhere\": {\"__current_case__\": 0, \"searchwhere_select\": \"line\"}, \"skip_first_line\": \"false\", \"wholewords\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy1",
+ "tool_id": "Cut1",
+ "tool_state": "{\"columnList\": \"c2\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.2",
"type": "tool",
- "uuid": "c37db543-a966-4ed2-88b9-87b317465144",
+ "uuid": "8cc3e58f-2940-454a-9cf6-b32c1ab19016",
"when": null,
"workflow_outputs": []
},
- "12": {
+ "10": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/9.3+galaxy1",
"errors": null,
- "id": 12,
+ "id": 10,
"input_connections": {
"inputs": [
{
- "id": 10,
- "output_name": "output"
+ "id": 7,
+ "output_name": "mito_scaff_names"
},
{
- "id": 11,
- "output_name": "outfile"
+ "id": 9,
+ "output_name": "out_file1"
}
]
},
@@ -543,13 +482,13 @@
}
],
"position": {
- "left": 2611.0546875,
- "top": 276.36328125
+ "left": 2538.6178936709443,
+ "top": 423.9453125
},
"post_job_actions": {},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -567,18 +506,18 @@
}
]
},
- "13": {
+ "11": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 13,
+ "id": 11,
"input_connections": {
"input_file": {
"id": 0,
"output_name": "output"
},
"target_condition|exclude_bed": {
- "id": 12,
+ "id": 10,
"output_name": "out_file1"
}
},
@@ -592,8 +531,8 @@
}
],
"position": {
- "left": 3050.21875,
- "top": 650.49609375
+ "left": 2977.7819561709443,
+ "top": 798.078125
},
"post_job_actions": {},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
@@ -620,6 +559,6 @@
"tags": [
"VGP_curated"
],
- "uuid": "f6d8df21-f1dc-493c-bfab-e2cbecb8873d",
- "version": 1
-}
+ "uuid": "aa4960d9-198d-4990-a393-a98efcd3070a",
+ "version": 3
+}
\ No newline at end of file
diff --git a/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/CHANGELOG.md b/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/CHANGELOG.md
index 3414f50e8..f9eaf2e64 100644
--- a/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog
+## [0.3] 2024-08-26
+
+- Changed the regex to only change the sequences. The workflow is now more robust to different (non VGP) scaffold names and VGP names with prefixes.
+- Reduce the number of steps in the workflow.
+
+## [0.2] 2024-08-15
+
+- Bug Fix: a missing regex caused the list of contaminants to empty out and the contaminants were not removed.
+
## [0.1.6] 2024-06-10
### Automatic update
diff --git a/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/test-data/full contaminant + mito scaffold list.txt b/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/test-data/full contaminant + mito scaffold list.txt
deleted file mode 100644
index 50433e8b3..000000000
--- a/workflows/VGP-assembly-v2/Assembly-decontamination-VGP9/test-data/full contaminant + mito scaffold list.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-scaffold_1058
-scaffold_1100
diff --git a/workflows/VGP-assembly-v2/Mitogenome-assembly-VGP0/Mitogenome-Assembly-VGP0-tests.yml b/workflows/VGP-assembly-v2/Mitogenome-assembly-VGP0/Mitogenome-Assembly-VGP0-tests.yml
index 9ed2a53dd..8a5cfd2a7 100644
--- a/workflows/VGP-assembly-v2/Mitogenome-assembly-VGP0/Mitogenome-Assembly-VGP0-tests.yml
+++ b/workflows/VGP-assembly-v2/Mitogenome-assembly-VGP0/Mitogenome-Assembly-VGP0-tests.yml
@@ -25,6 +25,6 @@
value: 68000
delta: 5000
mitogenome_genbank:
- assert:
- has_n_line:
+ asserts:
+ has_n_lines:
n: 480
diff --git a/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/CHANGELOG.md b/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/CHANGELOG.md
index 49615216c..89ecef563 100644
--- a/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/CHANGELOG.md
@@ -1,5 +1,15 @@
# Changelog
+## [0.4] 2024-08-13
+
+### Added
+
+- Workflow report
+
+### Changed
+
+- Expose Busco lineage database parameter
+- Fix bug that was causing issues when merging the assembly statistics: The presence of the '#' character caused the tables to join incorrectly, and the numbers did not match the metrics
## [0.3.8] 2024-04-23
diff --git a/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/Purge-duplicate-contigs-VGP-tests.yml b/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/Purge-duplicate-contigs-VGP-tests.yml
index d0439c476..9d16908f2 100644
--- a/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/Purge-duplicate-contigs-VGP-tests.yml
+++ b/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/Purge-duplicate-contigs-VGP-tests.yml
@@ -27,6 +27,7 @@
- class: File
identifier: yeast_reads_sub1.fastq.gz
location: https://zenodo.org/records/10047837/files/Pacbio%20Reads%20Collection%20-%20Trimmed_yeast_reads_sub1.fastq.gz.fastq.gz?download=1
+ Database for Busco Lineage: v5
Lineage: vertebrata_odb10
Name of primary assembly: Primary
Name of alternate assembly: Alternate
diff --git a/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/Purge-duplicate-contigs-VGP6.ga b/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/Purge-duplicate-contigs-VGP6.ga
index a004fd2a2..e6b6960f2 100644
--- a/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/Purge-duplicate-contigs-VGP6.ga
+++ b/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/Purge-duplicate-contigs-VGP6.ga
@@ -15,8 +15,11 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release": "0.3.8",
+ "release": "0.4",
"name": "Purge-duplicate-contigs-VGP6",
+ "report": {
+ "markdown": "\n# Workflow Execution Report\n\nTime workflow was invoked\n\n```galaxy\ninvocation_time()\n```\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Merqury results\n\nMerqury QV:\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_QV\")\n```\n\nMerqury completeness:\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_stats\")\n```\n\nMerqury plots:\n\nspectra-cn:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-cn.fl\")\n```\n\n\nspectra-asm:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-asm.fl\")\n```\n\n\nhap1/Primary spectra-cn:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_01.spectra-cn.fl\")\n```\n\n\nhap2/alternate spectra-cn:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_02.spectra-cn.fl\")\n```\n\n\n\n\n## BUSCO results (Vertebrata database)\n\nPurged hap1/primary Assembly\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco on Purged Primary assembly: summary image\")\n```\n\n\n## Assembly statistics\n\n\n```galaxy\nhistory_dataset_as_table(output=\"clean_stats\")\n```\n\n\n## Nx and Size plots\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Nx Plot\")\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Size Plot\")\n```\n\n\n\n## Current Workflow\n```galaxy\nworkflow_display()\n```\n"
+ },
"steps": {
"0": {
"annotation": "A simple list containing PacBio data in either fasta or fastq formats with trimmed adapters. These are usually generated by contiging workflows and have tag \"trimmed_hifi\" associated with them.\n",
@@ -181,11 +184,44 @@
"workflow_outputs": []
},
"6": {
- "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis.\n",
+ "annotation": "",
"content_id": null,
"errors": null,
"id": 6,
"input_connections": {},
+ "inputs": [
+ {
+ "description": "",
+ "name": "Database for Busco Lineage"
+ }
+ ],
+ "label": "Database for Busco Lineage",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 265.7339336519477,
+ "top": 639.7798327397703
+ },
+ "tool_id": null,
+ "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "b9c24106-80b7-46ba-9f50-1dcfc7d434d7",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "c7d6dfcd-5f5a-410e-b4cf-ce62dcbd7569"
+ }
+ ]
+ },
+ "7": {
+ "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis.\n",
+ "content_id": null,
+ "errors": null,
+ "id": 7,
+ "input_connections": {},
"inputs": [
{
"description": "Taxonomic lineage for the organism being assembled for Busco analysis.\n",
@@ -196,8 +232,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 216.70703125,
- "top": 631.06640625
+ "left": 294.03105732816533,
+ "top": 746.4774503653352
},
"tool_id": null,
"tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
@@ -205,13 +241,19 @@
"type": "parameter_input",
"uuid": "a489e27a-9a41-41e2-ab57-db2e855b1018",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "312c40bd-ea21-4624-842a-85f8369b8dfb"
+ }
+ ]
},
- "7": {
+ "8": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 7,
+ "id": 8,
"input_connections": {},
"inputs": [
{
@@ -232,13 +274,19 @@
"type": "data_input",
"uuid": "f53ab5b0-6b4d-43ea-8876-a1e2476fc7c6",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "ed6c5809-74a5-41e2-9efc-49af166df64c"
+ }
+ ]
},
- "8": {
+ "9": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 8,
+ "id": 9,
"input_connections": {},
"inputs": [
{
@@ -259,13 +307,19 @@
"type": "parameter_input",
"uuid": "2952f3e6-cc98-4cbe-ac46-32adb482ff3d",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "d52023b4-c747-4c66-82f6-5f017ee6413f"
+ }
+ ]
},
- "9": {
+ "10": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 9,
+ "id": 10,
"input_connections": {},
"inputs": [
{
@@ -286,13 +340,19 @@
"type": "parameter_input",
"uuid": "fd024c72-fe6c-4cd9-ac28-c8e86eaafc4f",
"when": null,
- "workflow_outputs": []
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "0861bf3a-8855-4817-a9d4-b12e4d6d9089"
+ }
+ ]
},
- "10": {
+ "11": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0",
"errors": null,
- "id": 10,
+ "id": 11,
"input_connections": {
"fastq_input|fastq_input1": {
"id": 0,
@@ -344,11 +404,11 @@
"when": null,
"workflow_outputs": []
},
- "11": {
+ "12": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 11,
+ "id": 12,
"input_connections": {
"function_select|input": {
"id": 1,
@@ -389,11 +449,11 @@
"when": null,
"workflow_outputs": []
},
- "12": {
+ "13": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
"errors": null,
- "id": 12,
+ "id": 13,
"input_connections": {
"input": {
"id": 4,
@@ -434,11 +494,11 @@
"when": null,
"workflow_outputs": []
},
- "13": {
+ "14": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 13,
+ "id": 14,
"input_connections": {
"input1": {
"id": 5,
@@ -481,18 +541,96 @@
}
]
},
- "14": {
+ "15": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1",
+ "errors": null,
+ "id": 15,
+ "input_connections": {
+ "components_1|param_type|component_value": {
+ "id": 9,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Awk command for primary assembly",
+ "name": "Compose text parameter value",
+ "outputs": [
+ {
+ "name": "out1",
+ "type": "expression.json"
+ }
+ ],
+ "position": {
+ "left": 4651.365068171187,
+ "top": 984.2645791215833
+ },
+ "post_job_actions": {},
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1",
+ "tool_shed_repository": {
+ "changeset_revision": "e188c9826e0f",
+ "name": "compose_text_param",
+ "owner": "iuc",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"components\": [{\"__index__\": 0, \"param_type\": {\"select_param_type\": \"text\", \"__current_case__\": 0, \"component_value\": \"BEGIN{print \\\"Metric\\\\t\"}}, {\"__index__\": 1, \"param_type\": {\"select_param_type\": \"text\", \"__current_case__\": 0, \"component_value\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"param_type\": {\"select_param_type\": \"text\", \"__current_case__\": 0, \"component_value\": \"\\\"}; {print}; \"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "0.1.1",
+ "type": "tool",
+ "uuid": "6cc103fa-7ff9-4594-a380-2a740d05fd85",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "16": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1",
+ "errors": null,
+ "id": 16,
+ "input_connections": {
+ "components_1|param_type|component_value": {
+ "id": 10,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Awk command for alternate assembly 2",
+ "name": "Compose text parameter value",
+ "outputs": [
+ {
+ "name": "out1",
+ "type": "expression.json"
+ }
+ ],
+ "position": {
+ "left": 4644.5776730115,
+ "top": 504.2187556460902
+ },
+ "post_job_actions": {},
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1",
+ "tool_shed_repository": {
+ "changeset_revision": "e188c9826e0f",
+ "name": "compose_text_param",
+ "owner": "iuc",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"components\": [{\"__index__\": 0, \"param_type\": {\"select_param_type\": \"text\", \"__current_case__\": 0, \"component_value\": \"BEGIN{print \\\"Metric\\\\t\"}}, {\"__index__\": 1, \"param_type\": {\"select_param_type\": \"text\", \"__current_case__\": 0, \"component_value\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"param_type\": {\"select_param_type\": \"text\", \"__current_case__\": 0, \"component_value\": \"\\\"}; {print}; \"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "0.1.1",
+ "type": "tool",
+ "uuid": "4b54a0ae-8c81-4f58-9902-470660558866",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "17": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0",
"errors": null,
- "id": 14,
+ "id": 17,
"input_connections": {
"fastq_input|fastq_input1": {
- "id": 11,
+ "id": 12,
"output_name": "split_fasta"
},
"reference_source|ref_file": {
- "id": 11,
+ "id": 12,
"output_name": "split_fasta"
}
},
@@ -532,14 +670,14 @@
"when": null,
"workflow_outputs": []
},
- "15": {
+ "18": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 15,
+ "id": 18,
"input_connections": {
"input": {
- "id": 12,
+ "id": 13,
"output_name": "out_file1"
}
},
@@ -565,14 +703,14 @@
"when": null,
"workflow_outputs": []
},
- "16": {
+ "19": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 16,
+ "id": 19,
"input_connections": {
"input": {
- "id": 12,
+ "id": 13,
"output_name": "out_file1"
}
},
@@ -598,14 +736,14 @@
"when": null,
"workflow_outputs": []
},
- "17": {
+ "20": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 17,
+ "id": 20,
"input_connections": {
"input1": {
- "id": 15,
+ "id": 18,
"output_name": "out_file1"
}
},
@@ -658,14 +796,14 @@
"when": null,
"workflow_outputs": []
},
- "18": {
+ "21": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 18,
+ "id": 21,
"input_connections": {
"input1": {
- "id": 16,
+ "id": 19,
"output_name": "out_file1"
}
},
@@ -697,22 +835,22 @@
"when": null,
"workflow_outputs": []
},
- "19": {
+ "22": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 19,
+ "id": 22,
"input_connections": {
"function_select|input": {
- "id": 10,
+ "id": 11,
"output_name": "alignment_output"
},
"function_select|section_calcuts|transition": {
- "id": 18,
+ "id": 21,
"output_name": "integer_param"
},
"function_select|section_calcuts|upper_depth": {
- "id": 17,
+ "id": 20,
"output_name": "integer_param"
}
},
@@ -818,22 +956,22 @@
}
]
},
- "20": {
+ "23": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 20,
+ "id": 23,
"input_connections": {
"function_select|coverage": {
- "id": 19,
+ "id": 22,
"output_name": "pbcstat_cov"
},
"function_select|cutoffs": {
- "id": 19,
+ "id": 22,
"output_name": "calcuts_cutoff"
},
"function_select|input": {
- "id": 14,
+ "id": 17,
"output_name": "alignment_output"
}
},
@@ -884,14 +1022,14 @@
"when": null,
"workflow_outputs": []
},
- "21": {
+ "24": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 21,
+ "id": 24,
"input_connections": {
"function_select|bed_input": {
- "id": 20,
+ "id": 23,
"output_name": "purge_dups_bed"
},
"function_select|fasta_input": {
@@ -966,14 +1104,14 @@
}
]
},
- "22": {
+ "25": {
"annotation": "",
"content_id": "cat1",
"errors": null,
- "id": 22,
+ "id": 25,
"input_connections": {
"input1": {
- "id": 21,
+ "id": 24,
"output_name": "get_seqs_hap"
},
"queries_0|input2": {
@@ -1016,19 +1154,23 @@
"when": null,
"workflow_outputs": []
},
- "23": {
+ "26": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0",
"errors": null,
- "id": 23,
+ "id": 26,
"input_connections": {
"input": {
- "id": 21,
+ "id": 24,
"output_name": "get_seqs_purged"
},
- "lineage|lineage_dataset": {
+ "lineage_conditional|cached_db": {
"id": 6,
"output_name": "output"
+ },
+ "lineage|lineage_dataset": {
+ "id": 7,
+ "output_name": "output"
}
},
"inputs": [],
@@ -1104,36 +1246,36 @@
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "5.5.0+galaxy0",
"type": "tool",
"uuid": "88073363-2f5c-4486-a23a-1cfdc4f5e6a6",
"when": null,
"workflow_outputs": [
- {
- "label": "Busco on Purged Primary assembly: summary image",
- "output_name": "summary_image",
- "uuid": "d1ecf9fe-3f76-465d-bcac-cf5b4986a8e8"
- },
{
"label": "Busco on Purged Primary assembly: short summary",
"output_name": "busco_sum",
"uuid": "87515aeb-4e2e-494f-a271-44013d0944e4"
+ },
+ {
+ "label": "Busco on Purged Primary assembly: summary image",
+ "output_name": "summary_image",
+ "uuid": "d1ecf9fe-3f76-465d-bcac-cf5b4986a8e8"
}
]
},
- "24": {
+ "27": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 24,
+ "id": 27,
"input_connections": {
"input_file": {
- "id": 21,
+ "id": 24,
"output_name": "get_seqs_purged"
},
"mode_condition|swiss_army_knife": {
- "id": 7,
+ "id": 8,
"output_name": "output"
}
},
@@ -1179,18 +1321,18 @@
}
]
},
- "25": {
+ "28": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 25,
+ "id": 28,
"input_connections": {
"input_file": {
- "id": 21,
+ "id": 24,
"output_name": "get_seqs_purged"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 13,
+ "id": 14,
"output_name": "integer_param"
}
},
@@ -1230,14 +1372,14 @@
"when": null,
"workflow_outputs": []
},
- "26": {
+ "29": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 26,
+ "id": 29,
"input_connections": {
"input_file": {
- "id": 21,
+ "id": 24,
"output_name": "get_seqs_purged"
}
},
@@ -1277,18 +1419,18 @@
"when": null,
"workflow_outputs": []
},
- "27": {
+ "30": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0",
"errors": null,
- "id": 27,
+ "id": 30,
"input_connections": {
"fastq_input|fastq_input1": {
"id": 0,
"output_name": "output"
},
"reference_source|ref_file": {
- "id": 22,
+ "id": 25,
"output_name": "out_file1"
}
},
@@ -1335,14 +1477,14 @@
"when": null,
"workflow_outputs": []
},
- "28": {
+ "31": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 28,
+ "id": 31,
"input_connections": {
"function_select|input": {
- "id": 22,
+ "id": 25,
"output_name": "out_file1"
}
},
@@ -1387,14 +1529,18 @@
"when": null,
"workflow_outputs": []
},
- "29": {
+ "32": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 29,
+ "id": 32,
"input_connections": {
+ "code": {
+ "id": 15,
+ "output_name": "out1"
+ },
"infile": {
- "id": 25,
+ "id": 28,
"output_name": "stats"
}
},
@@ -1425,19 +1571,19 @@
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"code\": \"BEGIN{print \\\"Metric\\\\tPrimary\\\"}; {print}; \", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"code\": {\"__class__\": \"ConnectedValue\"}, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "8ad0b9e5-e002-402d-9d3a-ec20c331f864",
"when": null,
"workflow_outputs": []
},
- "30": {
+ "33": {
"annotation": "",
- "id": 30,
+ "id": 33,
"input_connections": {
"gfa_stats": {
- "id": 26,
+ "id": 29,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -1800,7 +1946,7 @@
]
}
},
- "tags": "",
+ "tags": [],
"uuid": "a9f43eb4-7587-49e4-aee4-7fabb96cc753"
},
"tool_id": null,
@@ -1809,22 +1955,22 @@
"when": null,
"workflow_outputs": []
},
- "31": {
+ "34": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 31,
+ "id": 34,
"input_connections": {
"function_select|input": {
- "id": 27,
+ "id": 30,
"output_name": "alignment_output"
},
"function_select|section_calcuts|transition": {
- "id": 18,
+ "id": 21,
"output_name": "integer_param"
},
"function_select|section_calcuts|upper_depth": {
- "id": 17,
+ "id": 20,
"output_name": "integer_param"
}
},
@@ -1937,18 +2083,18 @@
}
]
},
- "32": {
+ "35": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0",
"errors": null,
- "id": 32,
+ "id": 35,
"input_connections": {
"fastq_input|fastq_input1": {
- "id": 28,
+ "id": 31,
"output_name": "split_fasta"
},
"reference_source|ref_file": {
- "id": 28,
+ "id": 31,
"output_name": "split_fasta"
}
},
@@ -1995,22 +2141,22 @@
"when": null,
"workflow_outputs": []
},
- "33": {
+ "36": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 33,
+ "id": 36,
"input_connections": {
"function_select|coverage": {
- "id": 31,
+ "id": 34,
"output_name": "pbcstat_cov"
},
"function_select|cutoffs": {
- "id": 31,
+ "id": 34,
"output_name": "calcuts_cutoff"
},
"function_select|input": {
- "id": 32,
+ "id": 35,
"output_name": "alignment_output"
}
},
@@ -2061,18 +2207,18 @@
"when": null,
"workflow_outputs": []
},
- "34": {
+ "37": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 34,
+ "id": 37,
"input_connections": {
"function_select|bed_input": {
- "id": 33,
+ "id": 36,
"output_name": "purge_dups_bed"
},
"function_select|fasta_input": {
- "id": 22,
+ "id": 25,
"output_name": "out_file1"
}
},
@@ -2136,18 +2282,18 @@
}
]
},
- "35": {
+ "38": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 35,
+ "id": 38,
"input_connections": {
"input_file": {
- "id": 34,
+ "id": 37,
"output_name": "get_seqs_purged"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 13,
+ "id": 14,
"output_name": "integer_param"
}
},
@@ -2187,14 +2333,14 @@
"when": null,
"workflow_outputs": []
},
- "36": {
+ "39": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 36,
+ "id": 39,
"input_connections": {
"input_file": {
- "id": 34,
+ "id": 37,
"output_name": "get_seqs_purged"
}
},
@@ -2234,18 +2380,18 @@
"when": null,
"workflow_outputs": []
},
- "37": {
+ "40": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy4",
"errors": null,
- "id": 37,
+ "id": 40,
"input_connections": {
"mode|assembly_options|assembly_01": {
- "id": 21,
+ "id": 24,
"output_name": "get_seqs_purged"
},
"mode|assembly_options|assembly_02": {
- "id": 34,
+ "id": 37,
"output_name": "get_seqs_purged"
},
"mode|meryldb_F1": {
@@ -2351,30 +2497,30 @@
"uuid": "133c60bc-4171-44b4-bf22-c70c623265b2",
"when": null,
"workflow_outputs": [
- {
- "label": "Merqury on Phased assemblies: Images",
- "output_name": "png_files",
- "uuid": "ff9cfc96-449e-41d8-9c10-7f586ab6f479"
- },
{
"label": "Merqury on Phased assemblies: stats",
"output_name": "stats_files",
"uuid": "70f44477-6a3b-4ac4-b01a-f812ea880bae"
+ },
+ {
+ "label": "Merqury on Phased assemblies: Images",
+ "output_name": "png_files",
+ "uuid": "ff9cfc96-449e-41d8-9c10-7f586ab6f479"
}
]
},
- "38": {
+ "41": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 38,
+ "id": 41,
"input_connections": {
"input_file": {
- "id": 34,
+ "id": 37,
"output_name": "get_seqs_purged"
},
"mode_condition|swiss_army_knife": {
- "id": 7,
+ "id": 8,
"output_name": "output"
}
},
@@ -2388,8 +2534,8 @@
}
],
"position": {
- "left": 5040.296875,
- "top": 1349.00390625
+ "left": 5015.859874326301,
+ "top": 1255.3651332174506
},
"post_job_actions": {
"TagDatasetActionoutput": {
@@ -2420,14 +2566,18 @@
}
]
},
- "39": {
+ "42": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 39,
+ "id": 42,
"input_connections": {
+ "code": {
+ "id": 16,
+ "output_name": "out1"
+ },
"infile": {
- "id": 35,
+ "id": 38,
"output_name": "stats"
}
},
@@ -2458,19 +2608,19 @@
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"code\": \"BEGIN{print \\\"Metric\\\\tAlternate\\\"}; {print}; \", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"code\": {\"__class__\": \"ConnectedValue\"}, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "ed133b72-e945-4fe5-91d6-c71efa30678c",
"when": null,
"workflow_outputs": []
},
- "40": {
+ "43": {
"annotation": "",
- "id": 40,
+ "id": 43,
"input_connections": {
"gfa_stats": {
- "id": 36,
+ "id": 39,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -2833,7 +2983,7 @@
]
}
},
- "tags": "",
+ "tags": [],
"uuid": "7a0c200d-3c99-48e2-a4f7-5e86715448b9"
},
"tool_id": null,
@@ -2842,84 +2992,340 @@
"when": null,
"workflow_outputs": []
},
- "41": {
+ "44": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
+ "content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 41,
+ "id": 44,
"input_connections": {
- "infile1": {
- "id": 29,
- "output_name": "outfile"
- },
- "infile2": {
- "id": 39,
- "output_name": "outfile"
+ "input": {
+ "id": 40,
+ "output_name": "qv_files"
}
},
"inputs": [],
- "label": null,
- "name": "Join",
+ "label": "merqury_QV",
+ "name": "Extract dataset",
"outputs": [
{
"name": "output",
- "type": "input"
+ "type": "data"
}
],
"position": {
- "left": 5646.44140625,
- "top": 850.56640625
+ "left": 5380.134532792207,
+ "top": 1426.0925046670234
},
"post_job_actions": {
- "TagDatasetActionoutput": {
- "action_arguments": {
- "tags": "gfastats_p1_p2"
- },
- "action_type": "TagDatasetAction",
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
"output_name": "output"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
- "tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
- "name": "text_processing",
- "owner": "bgruening",
- "tool_shed": "toolshed.g2.bx.psu.edu"
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "7d4f1ffc-5e09-4db5-aebd-1d1c9383e6b8",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "merqury_QV",
+ "output_name": "output",
+ "uuid": "2f152e08-eaf2-4539-802c-cec3b72e6afe"
+ }
+ ]
+ },
+ "45": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 45,
+ "input_connections": {
+ "input": {
+ "id": 40,
+ "output_name": "png_files"
+ }
},
- "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": true, \"ignore_case\": false, \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \"-a 1 -a 2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy1",
+ "inputs": [],
+ "label": "output_merqury.spectra-cn.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 5383.847035629067,
+ "top": 1539.9431415667343
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.spectra-cn.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
"type": "tool",
- "uuid": "c620558f-324d-40cf-86b6-7460b52d49bf",
+ "uuid": "706cf485-92c5-43c3-8a04-23af75cf56c8",
"when": null,
"workflow_outputs": [
{
- "label": "Assembly stats on Primary and alternate assemblies",
+ "label": "output_merqury.spectra-cn.fl",
"output_name": "output",
- "uuid": "36aaeacd-4752-43cb-9000-f859290c9ed2"
+ "uuid": "f34e855e-09ed-4da3-970c-ec7ad337c651"
}
]
},
- "42": {
+ "46": {
"annotation": "",
- "id": 42,
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 46,
"input_connections": {
- "Alternate data": {
+ "input": {
+ "id": 40,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.spectra-asm.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 5392.201156836791,
+ "top": 1705.0261196501608
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.spectra-asm.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "4edba3bb-2444-4d91-87cc-50acc24923e9",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.spectra-asm.fl",
+ "output_name": "output",
+ "uuid": "71ffd225-48bd-4e96-8025-ebaa2ea02bad"
+ }
+ ]
+ },
+ "47": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 47,
+ "input_connections": {
+ "input": {
+ "id": 40,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.assembly_01.spectra-cn.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 5353.028840865742,
+ "top": 1867.990707717229
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.assembly_01.spectra-cn.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "41fd4355-7ef4-43be-b71c-0c4a897ddc5e",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.assembly_01.spectra-cn.fl",
+ "output_name": "output",
+ "uuid": "05b7387f-ab38-403e-ab71-b1d65e1cb025"
+ }
+ ]
+ },
+ "48": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 48,
+ "input_connections": {
+ "input": {
"id": 40,
+ "output_name": "stats_files"
+ }
+ },
+ "inputs": [],
+ "label": "merqury_stats",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 5343.486929912844,
+ "top": 2088.537692922351
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"first\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "5a62f7c5-2e97-44d8-8002-ab66dd0cd17c",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "merqury_stats",
+ "output_name": "output",
+ "uuid": "bd69aaf0-461e-4c12-a8ad-48d97de3b00c"
+ }
+ ]
+ },
+ "49": {
+ "annotation": "",
+ "content_id": "__EXTRACT_DATASET__",
+ "errors": null,
+ "id": 49,
+ "input_connections": {
+ "input": {
+ "id": 40,
+ "output_name": "png_files"
+ }
+ },
+ "inputs": [],
+ "label": "output_merqury.assembly_02.spectra-cn.fl",
+ "name": "Extract dataset",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "data"
+ }
+ ],
+ "position": {
+ "left": 5608.286176870008,
+ "top": 1876.5434537656731
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutput": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__EXTRACT_DATASET__",
+ "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"output_merqury.assembly_02.spectra-cn.fl\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.1",
+ "type": "tool",
+ "uuid": "035085e5-6b04-4a50-bb0a-6b3477528921",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "output_merqury.assembly_02.spectra-cn.fl",
+ "output_name": "output",
+ "uuid": "8bf731d1-0eee-4877-b93c-6989cec7d77f"
+ }
+ ]
+ },
+ "50": {
+ "annotation": "",
+ "content_id": "join1",
+ "errors": null,
+ "id": 50,
+ "input_connections": {
+ "input1": {
+ "id": 32,
+ "output_name": "outfile"
+ },
+ "input2": {
+ "id": 42,
+ "output_name": "outfile"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Join two Datasets",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 5636.118290732048,
+ "top": 1129.4974470583106
+ },
+ "post_job_actions": {
+ "HideDatasetActionout_file1": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "out_file1"
+ }
+ },
+ "tool_id": "join1",
+ "tool_state": "{\"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"fill_empty\", \"__current_case__\": 1, \"fill_columns_by\": \"fill_unjoined_only\", \"do_fill_empty_columns\": {\"column_fill_type\": \"single_fill_value\", \"__current_case__\": 0, \"fill_value\": \".\"}}, \"header\": \"\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.1.3",
+ "type": "tool",
+ "uuid": "ac5c2ad5-434a-4c52-802b-eb14db33b07d",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "51": {
+ "annotation": "",
+ "id": 51,
+ "input_connections": {
+ "Alternate data": {
+ "id": 43,
"input_subworkflow_step_id": 1,
"output_name": "gfastats data for plotting"
},
"Name of alternate assembly": {
- "id": 9,
+ "id": 10,
"input_subworkflow_step_id": 3,
"output_name": "output"
},
"Name of primary assembly": {
- "id": 8,
+ "id": 9,
"input_subworkflow_step_id": 2,
"output_name": "output"
},
"Primary data": {
- "id": 30,
+ "id": 33,
"input_subworkflow_step_id": 0,
"output_name": "gfastats data for plotting"
}
@@ -3417,7 +3823,7 @@
]
}
},
- "tags": "",
+ "tags": [],
"uuid": "b7f76989-26b9-4071-964c-ea77f10a94e7"
},
"tool_id": null,
@@ -3426,14 +3832,135 @@
"when": null,
"workflow_outputs": [
{
- "label": "Nx Plot",
- "output_name": "Nx Plot",
- "uuid": "a15bf8fc-7eae-497b-9f75-ddaf474ade51"
+ "label": null,
+ "output_name": "2:output",
+ "uuid": "c3c7dd49-e85e-49a3-a21e-87f8c8b59e11"
+ },
+ {
+ "label": null,
+ "output_name": "3:output",
+ "uuid": "5ff717c7-df51-4c28-8605-f55a07c3a949"
},
{
"label": "Size Plot",
"output_name": "Size Plot",
"uuid": "b5516866-8b4f-41b8-a19a-12e1362d344c"
+ },
+ {
+ "label": "Nx Plot",
+ "output_name": "Nx Plot",
+ "uuid": "a15bf8fc-7eae-497b-9f75-ddaf474ade51"
+ }
+ ]
+ },
+ "52": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1",
+ "errors": null,
+ "id": 52,
+ "input_connections": {
+ "input": {
+ "id": 50,
+ "output_name": "out_file1"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Advanced Cut",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 5984.510589781477,
+ "top": 1063.1774682487087
+ },
+ "post_job_actions": {
+ "RenameDatasetActionoutput": {
+ "action_arguments": {
+ "newname": "Assembly statistics for purged assemblies"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "output"
+ },
+ "TagDatasetActionoutput": {
+ "action_arguments": {
+ "tags": "gfastats_p1_p2"
+ },
+ "action_type": "TagDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1",
+ "tool_shed_repository": {
+ "changeset_revision": "fbf99087e067",
+ "name": "text_processing",
+ "owner": "bgruening",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"delimiter\": \"\", \"colnames_option\": {\"header\": \"N\", \"__current_case__\": 1, \"list\": [\"3\"]}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "9.3+galaxy1",
+ "type": "tool",
+ "uuid": "1963d91c-104e-4845-8045-6ae47c991241",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Assembly statistics for purged assemblies",
+ "output_name": "output",
+ "uuid": "5c1dae47-1920-41b6-b86f-8627ea5e5721"
+ }
+ ]
+ },
+ "53": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "errors": null,
+ "id": 53,
+ "input_connections": {
+ "infile": {
+ "id": 52,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Replace",
+ "outputs": [
+ {
+ "name": "outfile",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 6339.231196702902,
+ "top": 1019.7029697491412
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutfile": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "outfile"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "tool_shed_repository": {
+ "changeset_revision": "fbf99087e067",
+ "name": "text_processing",
+ "owner": "bgruening",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#\", \"replace_pattern\": \"Number of\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "9.3+galaxy1",
+ "type": "tool",
+ "uuid": "94fb5ab8-0ebf-4302-992f-b8ca42b01780",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "clean_stats",
+ "output_name": "outfile",
+ "uuid": "a022ab8b-306a-4035-8604-810d39f1bde7"
}
]
}
@@ -3441,6 +3968,6 @@
"tags": [
"VGP_curated"
],
- "uuid": "4818fdda-7a91-481a-a62f-ccab45a3c0f1",
- "version": 2
+ "uuid": "b5d0e4ae-3041-4cbe-9d0e-a1140e5469dd",
+ "version": 10
}
\ No newline at end of file
diff --git a/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/README.md b/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/README.md
index b2d6c9577..9aeae97b2 100644
--- a/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/README.md
+++ b/workflows/VGP-assembly-v2/Purge-duplicate-contigs-VGP6/README.md
@@ -11,9 +11,11 @@ This workflow is the 6th workflow of the VGP pipeline. It is meant to be run aft
4. K-mer database [meryldb] (Generated by the k-mer profiling workflow)
5. Genomescope model parameters [txt] (Generated by the k-mer profiling workflow)
6. Estimated Genome Size [txt]
-7. Name of first haplotype
-8. Name of second haplotype
-9. Lineage of you species for Busco Orthologs
+7. Database for busco lineage (recommended: latest)
+8. Lineage of your species for Busco Orthologs (recommended: vertebrata)
+9. Name of first haplotype
+10. Name of second haplotype
+
## Outputs
diff --git a/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/CHANGELOG.md b/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/CHANGELOG.md
index 10ed96a6a..788cbec76 100644
--- a/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## [0.7.1] 2024-08-13
+
+- Expose Busco parameters :
+ - Lineage database
+ - Lineage
+
## [0.7] 2024-07-24
### Added
diff --git a/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/Purging-duplicates-one-haplotype-VGP6b-tests.yml b/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/Purging-duplicates-one-haplotype-VGP6b-tests.yml
index 473b556b5..b6e202663 100644
--- a/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/Purging-duplicates-one-haplotype-VGP6b-tests.yml
+++ b/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/Purging-duplicates-one-haplotype-VGP6b-tests.yml
@@ -29,6 +29,8 @@
location: https://zenodo.org/records/10632760/files/Trimmed_yeast_reads_sub1.fastq.gz?download=1
Name of un-altered assembly: Hap2
Name of purged assembly: Hap1
+ Database for Busco Lineage: v5
+ Lineage: vertebrata_odb10
outputs:
Removed haplotigs:
asserts:
diff --git a/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/Purging-duplicates-one-haplotype-VGP6b.ga b/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/Purging-duplicates-one-haplotype-VGP6b.ga
index 41128c4e8..f85038526 100644
--- a/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/Purging-duplicates-one-haplotype-VGP6b.ga
+++ b/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/Purging-duplicates-one-haplotype-VGP6b.ga
@@ -15,7 +15,7 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release": "0.7",
+ "release": "0.7.1",
"name": "Purging-duplicates-one-haplotype-VGP6b ",
"report": {
"markdown": "\n# Workflow Execution Report\n\nTime workflow was invoked\n\n```galaxy\ninvocation_time()\n```\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Merqury results\n\nMerqury QV:\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_QV\")\n```\n\nMerqury completeness:\n\n```galaxy\nhistory_dataset_as_table(output=\"merqury_stats\")\n```\n\nMerqury plots:\n\nspectra-cn:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-cn.fl\")\n```\n\n\nspectra-asm:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.spectra-asm.fl\")\n```\n\n\nhap1 spectra-cn:\n\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_01.spectra-cn.fl\")\n```\n\n\nhap2 spectra-cn:\n\n```galaxy\nhistory_dataset_as_image(output=\"output_merqury.assembly_02.spectra-cn.fl\")\n```\n\n\n\n\n## BUSCO results (Vertebrata database)\n\nPurged Assembly\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco on Purged Primary assembly: summary image\")\n```\n\n\n## Assembly statistics\n\n\n```galaxy\nhistory_dataset_as_table(output=\"clean_stats\")\n```\n\n\n## Nx and Size plots\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Nx Plot\")\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Size Plot\")\n```\n\n\n\n## Current Workflow\n```galaxy\nworkflow_display()\n```\n"
@@ -189,6 +189,60 @@
"errors": null,
"id": 6,
"input_connections": {},
+ "inputs": [
+ {
+ "description": "",
+ "name": "Database for Busco Lineage"
+ }
+ ],
+ "label": "Database for Busco Lineage",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 1705.6584960887728,
+ "top": 1674.0155168754275
+ },
+ "tool_id": null,
+ "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "1562a9b8-e3b5-473f-9f77-e09693d1a98f",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "7": {
+ "annotation": "Taxonomic lineage for the organism being assembled for Busco analysis",
+ "content_id": null,
+ "errors": null,
+ "id": 7,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Taxonomic lineage for the organism being assembled for Busco analysis",
+ "name": "Lineage"
+ }
+ ],
+ "label": "Lineage",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 1718.7343010232019,
+ "top": 1810.02258129551
+ },
+ "tool_id": null,
+ "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "f95d611e-99bd-43a3-8455-b87df2071d01",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "8": {
+ "annotation": "",
+ "content_id": null,
+ "errors": null,
+ "id": 8,
+ "input_connections": {},
"inputs": [
{
"description": "",
@@ -210,11 +264,11 @@
"when": null,
"workflow_outputs": []
},
- "7": {
+ "9": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 7,
+ "id": 9,
"input_connections": {},
"inputs": [
{
@@ -237,11 +291,11 @@
"when": null,
"workflow_outputs": []
},
- "8": {
+ "10": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
"errors": null,
- "id": 8,
+ "id": 10,
"input_connections": {
"input": {
"id": 0,
@@ -282,11 +336,11 @@
"when": null,
"workflow_outputs": []
},
- "9": {
+ "11": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0",
"errors": null,
- "id": 9,
+ "id": 11,
"input_connections": {
"fastq_input|fastq_input1": {
"id": 1,
@@ -338,11 +392,11 @@
"when": null,
"workflow_outputs": []
},
- "10": {
+ "12": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 10,
+ "id": 12,
"input_connections": {
"function_select|input": {
"id": 2,
@@ -383,11 +437,11 @@
"when": null,
"workflow_outputs": []
},
- "11": {
+ "13": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 11,
+ "id": 13,
"input_connections": {
"input_file": {
"id": 4,
@@ -428,11 +482,11 @@
"when": null,
"workflow_outputs": []
},
- "12": {
+ "14": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 12,
+ "id": 14,
"input_connections": {
"input1": {
"id": 5,
@@ -474,14 +528,14 @@
"when": null,
"workflow_outputs": []
},
- "13": {
+ "15": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 13,
+ "id": 15,
"input_connections": {
"input": {
- "id": 8,
+ "id": 10,
"output_name": "out_file1"
}
},
@@ -513,14 +567,14 @@
"when": null,
"workflow_outputs": []
},
- "14": {
+ "16": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 14,
+ "id": 16,
"input_connections": {
"input": {
- "id": 8,
+ "id": 10,
"output_name": "out_file1"
}
},
@@ -552,18 +606,18 @@
"when": null,
"workflow_outputs": []
},
- "15": {
+ "17": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0",
"errors": null,
- "id": 15,
+ "id": 17,
"input_connections": {
"fastq_input|fastq_input1": {
- "id": 10,
+ "id": 12,
"output_name": "split_fasta"
},
"reference_source|ref_file": {
- "id": 10,
+ "id": 12,
"output_name": "split_fasta"
}
},
@@ -603,12 +657,12 @@
"when": null,
"workflow_outputs": []
},
- "16": {
+ "18": {
"annotation": "",
- "id": 16,
+ "id": 18,
"input_connections": {
"gfa_stats": {
- "id": 11,
+ "id": 13,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -980,18 +1034,18 @@
"when": null,
"workflow_outputs": []
},
- "17": {
+ "19": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 17,
+ "id": 19,
"input_connections": {
"input_file": {
"id": 4,
"output_name": "output"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 12,
+ "id": 14,
"output_name": "integer_param"
}
},
@@ -1029,14 +1083,14 @@
"when": null,
"workflow_outputs": []
},
- "18": {
+ "20": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 18,
+ "id": 20,
"input_connections": {
"input1": {
- "id": 13,
+ "id": 15,
"output_name": "out_file1"
}
},
@@ -1089,14 +1143,14 @@
"when": null,
"workflow_outputs": []
},
- "19": {
+ "21": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 19,
+ "id": 21,
"input_connections": {
"input1": {
- "id": 14,
+ "id": 16,
"output_name": "out_file1"
}
},
@@ -1128,14 +1182,14 @@
"when": null,
"workflow_outputs": []
},
- "20": {
+ "22": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 20,
+ "id": 22,
"input_connections": {
"infile": {
- "id": 17,
+ "id": 19,
"output_name": "stats"
}
},
@@ -1173,22 +1227,22 @@
"when": null,
"workflow_outputs": []
},
- "21": {
+ "23": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 21,
+ "id": 23,
"input_connections": {
"function_select|input": {
- "id": 9,
+ "id": 11,
"output_name": "alignment_output"
},
"function_select|section_calcuts|transition": {
- "id": 19,
+ "id": 21,
"output_name": "integer_param"
},
"function_select|section_calcuts|upper_depth": {
- "id": 18,
+ "id": 20,
"output_name": "integer_param"
}
},
@@ -1294,22 +1348,22 @@
}
]
},
- "22": {
+ "24": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 22,
+ "id": 24,
"input_connections": {
"function_select|coverage": {
- "id": 21,
+ "id": 23,
"output_name": "pbcstat_cov"
},
"function_select|cutoffs": {
- "id": 21,
+ "id": 23,
"output_name": "calcuts_cutoff"
},
"function_select|input": {
- "id": 15,
+ "id": 17,
"output_name": "alignment_output"
}
},
@@ -1360,14 +1414,14 @@
"when": null,
"workflow_outputs": []
},
- "23": {
+ "25": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"errors": null,
- "id": 23,
+ "id": 25,
"input_connections": {
"infile": {
- "id": 22,
+ "id": 24,
"output_name": "purge_dups_bed"
}
},
@@ -1407,14 +1461,14 @@
"when": null,
"workflow_outputs": []
},
- "24": {
+ "26": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0",
"errors": null,
- "id": 24,
+ "id": 26,
"input_connections": {
"function_select|bed_input": {
- "id": 23,
+ "id": 25,
"output_name": "output"
},
"function_select|fasta_input": {
@@ -1501,14 +1555,14 @@
}
]
},
- "25": {
+ "27": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy4",
"errors": null,
- "id": 25,
+ "id": 27,
"input_connections": {
"mode|assembly_options|assembly_01": {
- "id": 24,
+ "id": 26,
"output_name": "get_seqs_purged"
},
"mode|assembly_options|assembly_02": {
@@ -1635,14 +1689,14 @@
}
]
},
- "26": {
+ "28": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 26,
+ "id": 28,
"input_connections": {
"input_file": {
- "id": 24,
+ "id": 26,
"output_name": "get_seqs_purged"
}
},
@@ -1687,15 +1741,23 @@
"when": null,
"workflow_outputs": []
},
- "27": {
+ "29": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0",
"errors": null,
- "id": 27,
+ "id": 29,
"input_connections": {
"input": {
- "id": 24,
+ "id": 26,
"output_name": "get_seqs_purged"
+ },
+ "lineage_conditional|cached_db": {
+ "id": 6,
+ "output_name": "output"
+ },
+ "lineage|lineage_dataset": {
+ "id": 7,
+ "output_name": "output"
}
},
"inputs": [],
@@ -1771,7 +1833,7 @@
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": \"vertebrata_odb10\"}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"short_summary\", \"missing\", \"image\", \"gff\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "5.5.0+galaxy0",
"type": "tool",
"uuid": "73b62ef3-0002-418e-9f10-22076c1e48f3",
@@ -1789,14 +1851,14 @@
}
]
},
- "28": {
+ "30": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 28,
+ "id": 30,
"input_connections": {
"input_file": {
- "id": 24,
+ "id": 26,
"output_name": "get_seqs_purged"
}
},
@@ -1849,18 +1911,18 @@
}
]
},
- "29": {
+ "31": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 29,
+ "id": 31,
"input_connections": {
"input_file": {
- "id": 24,
+ "id": 26,
"output_name": "get_seqs_purged"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 12,
+ "id": 14,
"output_name": "integer_param"
}
},
@@ -1906,14 +1968,14 @@
}
]
},
- "30": {
+ "32": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 30,
+ "id": 32,
"input_connections": {
"input": {
- "id": 25,
+ "id": 27,
"output_name": "qv_files"
}
},
@@ -1951,14 +2013,14 @@
}
]
},
- "31": {
+ "33": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 31,
+ "id": 33,
"input_connections": {
"input": {
- "id": 25,
+ "id": 27,
"output_name": "png_files"
}
},
@@ -2003,14 +2065,14 @@
}
]
},
- "32": {
+ "34": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 32,
+ "id": 34,
"input_connections": {
"input": {
- "id": 25,
+ "id": 27,
"output_name": "png_files"
}
},
@@ -2055,14 +2117,14 @@
}
]
},
- "33": {
+ "35": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 33,
+ "id": 35,
"input_connections": {
"input": {
- "id": 25,
+ "id": 27,
"output_name": "png_files"
}
},
@@ -2107,14 +2169,14 @@
}
]
},
- "34": {
+ "36": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 34,
+ "id": 36,
"input_connections": {
"input": {
- "id": 25,
+ "id": 27,
"output_name": "stats_files"
}
},
@@ -2152,14 +2214,14 @@
}
]
},
- "35": {
+ "37": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 35,
+ "id": 37,
"input_connections": {
"input": {
- "id": 25,
+ "id": 27,
"output_name": "png_files"
}
},
@@ -2204,12 +2266,12 @@
}
]
},
- "36": {
+ "38": {
"annotation": "",
- "id": 36,
+ "id": 38,
"input_connections": {
"gfa_stats": {
- "id": 26,
+ "id": 28,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -2581,14 +2643,14 @@
"when": null,
"workflow_outputs": []
},
- "37": {
+ "39": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 37,
+ "id": 39,
"input_connections": {
"infile": {
- "id": 29,
+ "id": 31,
"output_name": "stats"
}
},
@@ -2626,27 +2688,27 @@
"when": null,
"workflow_outputs": []
},
- "38": {
+ "40": {
"annotation": "",
- "id": 38,
+ "id": 40,
"input_connections": {
"Alternate data": {
- "id": 16,
+ "id": 18,
"input_subworkflow_step_id": 1,
"output_name": "gfastats data for plotting"
},
"Name of alternate assembly": {
- "id": 7,
+ "id": 9,
"input_subworkflow_step_id": 3,
"output_name": "output"
},
"Name of primary assembly": {
- "id": 6,
+ "id": 8,
"input_subworkflow_step_id": 2,
"output_name": "output"
},
"Primary data": {
- "id": 36,
+ "id": 38,
"input_subworkflow_step_id": 0,
"output_name": "gfastats data for plotting"
}
@@ -3164,18 +3226,18 @@
}
]
},
- "39": {
+ "41": {
"annotation": "",
"content_id": "join1",
"errors": null,
- "id": 39,
+ "id": 41,
"input_connections": {
"input1": {
- "id": 37,
+ "id": 39,
"output_name": "outfile"
},
"input2": {
- "id": 20,
+ "id": 22,
"output_name": "outfile"
}
},
@@ -3207,14 +3269,14 @@
"when": null,
"workflow_outputs": []
},
- "40": {
+ "42": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1",
"errors": null,
- "id": 40,
+ "id": 42,
"input_connections": {
"input": {
- "id": 39,
+ "id": 41,
"output_name": "out_file1"
}
},
@@ -3267,14 +3329,14 @@
}
]
},
- "41": {
+ "43": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"errors": null,
- "id": 41,
+ "id": 43,
"input_connections": {
"infile": {
- "id": 40,
+ "id": 42,
"output_name": "output"
}
},
@@ -3322,6 +3384,6 @@
"tags": [
"VGP_curated"
],
- "uuid": "7d187438-e7da-494b-ba1f-993da4174e79",
- "version": 14
+ "uuid": "727b2b8c-3ff1-4736-952d-b2c215c0faa1",
+ "version": 1
}
\ No newline at end of file
diff --git a/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/README.md b/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/README.md
index 3c58d2ee4..ad3b26735 100644
--- a/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/README.md
+++ b/workflows/VGP-assembly-v2/Purge-duplicates-one-haplotype-VGP6b/README.md
@@ -6,13 +6,15 @@ This workflow is the 6th workflow of the VGP pipeline. It is meant to be run aft
## Inputs
1. Genomescope model parameters [txt] (Generated by the k-mer profiling workflow)
-1. Hifi long reads - trimmed [fastq] (Generated by Cutadapt in the contigging workflow)
-2. Assembly to purge (e.g. hap1) [fasta] (Generated by the contigging workflow)
-3. K-mer database [meryldb] (Generated by the k-mer profiling workflow)
-4. Estimated Genome Size [txt]
+2. Hifi long reads - trimmed [fastq] (Generated by Cutadapt in the contigging workflow)
+3. Assembly to purge (e.g. hap1) [fasta] (Generated by the contigging workflow)
+4. K-mer database [meryldb] (Generated by the k-mer profiling workflow)
5. Assembly to leave alone (used for merqury statistics) (e.g. hap2) [fasta] (Generated by the contigging workflow)
-6. Name of un-altered assembly
-7. Name of purged assembly
+6. Estimated Genome Size [txt]
+7. Database for busco lineage (recommended: latest)
+8. Busco lineage (recommended: vertebrata)
+9. Name of un-altered assembly
+10. Name of purged assembly
## Outputs
diff --git a/workflows/VGP-assembly-v2/Scaffolding-Bionano-VGP7/CHANGELOG.md b/workflows/VGP-assembly-v2/Scaffolding-Bionano-VGP7/CHANGELOG.md
index 8a3d28224..c97a841c8 100644
--- a/workflows/VGP-assembly-v2/Scaffolding-Bionano-VGP7/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/Scaffolding-Bionano-VGP7/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## [0.1.4] 2024-08-13
+
+- Addition of workflow report
+
## [0.1.3] 2024-04-01
### Automatic update
diff --git a/workflows/VGP-assembly-v2/Scaffolding-Bionano-VGP7/Scaffolding-BioNano-VGP7.ga b/workflows/VGP-assembly-v2/Scaffolding-Bionano-VGP7/Scaffolding-BioNano-VGP7.ga
index cd3691f4b..326a74a51 100644
--- a/workflows/VGP-assembly-v2/Scaffolding-Bionano-VGP7/Scaffolding-BioNano-VGP7.ga
+++ b/workflows/VGP-assembly-v2/Scaffolding-Bionano-VGP7/Scaffolding-BioNano-VGP7.ga
@@ -1,6 +1,7 @@
{
"a_galaxy_workflow": "true",
"annotation": "",
+ "comments": [],
"creator": [
{
"class": "Organization",
@@ -14,8 +15,11 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release": "0.1.3",
+ "release": "0.1.4",
"name": "Scaffolding-BioNano-VGP7",
+ "report": {
+ "markdown": "\n# Workflow Execution Report\n\n## Invocation time\n```galaxy\ninvocation_time()\n```\n\n## Assembly statistics\n\n```galaxy\nhistory_dataset_as_table(output=\"clean_stats\")\n```\n\n## Size plot\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Size Plot\")\n```\n\n\n## Nx plot\n```galaxy\nhistory_dataset_as_image(output=\"Nx Plot\")\n```\n\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n"
+ },
"steps": {
"0": {
"annotation": "",
@@ -123,13 +127,7 @@
"type": "data_input",
"uuid": "404dfe4f-8590-486e-b632-a0564010e213",
"when": null,
- "workflow_outputs": [
- {
- "label": null,
- "output_name": "output",
- "uuid": "5957fae6-c14a-464a-aedb-0695d68d69dd"
- }
- ]
+ "workflow_outputs": []
},
"4": {
"annotation": "",
@@ -181,12 +179,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool gfastats",
- "name": "mode_condition"
- }
- ],
+ "inputs": [],
"label": null,
"name": "gfastats",
"outputs": [
@@ -352,12 +345,7 @@
"output_name": "ngs_contigs_scaffold_agp"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool gfastats",
- "name": "mode_condition"
- }
- ],
+ "inputs": [],
"label": null,
"name": "gfastats",
"outputs": [
@@ -417,12 +405,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool gfastats",
- "name": "mode_condition"
- }
- ],
+ "inputs": [],
"label": null,
"name": "gfastats",
"outputs": [
@@ -562,7 +545,58 @@
},
"11": {
"annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "errors": null,
"id": 11,
+ "input_connections": {
+ "infile": {
+ "id": 9,
+ "output_name": "stats"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Replace",
+ "outputs": [
+ {
+ "name": "outfile",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 2430.427837638421,
+ "top": 236.31263207430692
+ },
+ "post_job_actions": {
+ "HideDatasetActionoutfile": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "outfile"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
+ "tool_shed_repository": {
+ "changeset_revision": "fbf99087e067",
+ "name": "text_processing",
+ "owner": "bgruening",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#\", \"replace_pattern\": \"Number of\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "9.3+galaxy1",
+ "type": "tool",
+ "uuid": "292e7cba-fa66-4f7e-935d-504d64a304cc",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "clean_stats",
+ "output_name": "outfile",
+ "uuid": "4a0bdf73-d0f9-4c54-9c82-9a63e19e4695"
+ }
+ ]
+ },
+ "12": {
+ "annotation": "",
+ "id": 12,
"input_connections": {
"gfa_stats": {
"id": 10,
@@ -922,7 +956,7 @@
]
}
},
- "tags": "",
+ "tags": [],
"uuid": "0d43f853-69ee-4f89-9a1d-50cfa45ec0fd"
},
"tool_id": null,
@@ -931,14 +965,14 @@
"when": null,
"workflow_outputs": []
},
- "12": {
+ "13": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 12,
+ "id": 13,
"input_connections": {
"input": {
- "id": 11,
+ "id": 12,
"output_name": "gfastats data for plotting"
}
},
@@ -970,14 +1004,14 @@
"when": null,
"workflow_outputs": []
},
- "13": {
+ "14": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 13,
+ "id": 14,
"input_connections": {
"input": {
- "id": 11,
+ "id": 12,
"output_name": "gfastats data for plotting"
}
},
@@ -1009,14 +1043,14 @@
"when": null,
"workflow_outputs": []
},
- "14": {
+ "15": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.4.0+galaxy1",
"errors": null,
- "id": 14,
+ "id": 15,
"input_connections": {
"input1": {
- "id": 12,
+ "id": 13,
"output_name": "out_file1"
}
},
@@ -1062,14 +1096,14 @@
}
]
},
- "15": {
+ "16": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.4.0+galaxy1",
"errors": null,
- "id": 15,
+ "id": 16,
"input_connections": {
"input1": {
- "id": 13,
+ "id": 14,
"output_name": "out_file1"
}
},
@@ -1119,6 +1153,6 @@
"tags": [
"VGP_curated"
],
- "uuid": "0c8b790c-4dce-4e9b-b942-da71a9e9b27e",
- "version": 5
+ "uuid": "9fd3c0de-a497-47dc-96e3-0f3e1998173d",
+ "version": 6
}
\ No newline at end of file
diff --git a/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/CHANGELOG.md b/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/CHANGELOG.md
index bda23d114..d71b86cda 100644
--- a/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog
+
+## [0.2.8] 2024-09-12
+
+- Add suffix to the scaffold names corresponding to the haplotype being assembled
+
+## [0.2.7] 2024-08-13
+
+- Expose Busco lineage database parameter
+
+## [0.2.6] 2024-08-05
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/yahs/yahs/1.2a.2+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/yahs/yahs/1.2a.2+galaxy2`
+
## [0.2.5] 2024-07-31
- Addition of Workflow report
diff --git a/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/README.md b/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/README.md
index 16413b667..e497e5704 100644
--- a/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/README.md
+++ b/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/README.md
@@ -10,10 +10,14 @@ Example of trajectory :
## Inputs
1. Scaffolded assembly [fasta]
-2. Concatenated HiC forward reads [fastq]
-3. Concatenated HiC reverse reads [fastq]
-4. Restriction enzyme sequence [txt]
-5. Estimated genome size [txt]
+2. Database for busco lineage (recommended: latest)
+3. Busco lineage (recommended: vertebrata)
+4. Concatenated HiC forward reads [fastq]
+5. Concatenated HiC reverse reads [fastq]
+6. Restriction enzyme sequence (recommended for VGP data: Arima Hi-C 2.0)
+7. Estimated genome size [txt]
+8. Haplotype name
+
### Outputs
diff --git a/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8-tests.yml b/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8-tests.yml
index 638d990be..a73013131 100644
--- a/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8-tests.yml
+++ b/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8-tests.yml
@@ -16,8 +16,10 @@
class: File
location: https://zenodo.org/records/10037496/files/Estimated%20genome%20size%20-%20Parameter%20File.txt?download=1
filetype: txt
+ Database for Busco Lineage: v5
Lineage: vertebrata_odb10
Restriction enzymes: arima2
+ Haplotype: hap1
outputs:
"Reconciliated Scaffolds: gfa":
asserts:
@@ -27,6 +29,8 @@
asserts:
has_n_lines:
n: 168
+ has_text:
+ text: "scaffold_53.hap1"
Busco Summary:
asserts:
has_text:
diff --git a/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8.ga b/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8.ga
index 13a9a4eb9..499b03b32 100644
--- a/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8.ga
+++ b/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8.ga
@@ -15,8 +15,8 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release": "0.2.5",
- "name": "Scaffolding-HiC-VGP8",
+ "release": "0.2.8",
+ "name": "Scaffolding with Hi-C data VGP8",
"report": {
"markdown": "# Workflow Execution Report\n\nTime workflow was invoked\n\n```galaxy\ninvocation_time()\n```\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n\n## BUSCO results (Vertebrata database)\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco Summary image\")\n```\n\n\n## Assembly statistics\n\n\n```galaxy\nhistory_dataset_as_table(output=\"clean_stats\")\n```\n\n\n## Nx and Size plots\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Nx Plot\")\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Size Plot\")\n```\n\n## PretextMap\n\n### Before Scaffolding\n\n\r\n```galaxy\nhistory_dataset_as_image(output=\"Pretext Map Before HiC scaffolding\")\n```\r\n\n\n### After Scaffolding\r\n```galaxy\nhistory_dataset_as_image(output=\"Pretext Map After HiC scaffolding\")\n```\r\n\n\n\n\n## Current Workflow\n```galaxy\nworkflow_display()\n```\n"
},
@@ -38,7 +38,7 @@
"outputs": [],
"position": {
"left": 0,
- "top": 163.55078125
+ "top": 220.18215513867335
},
"tool_id": null,
"tool_state": "{\"optional\": false, \"tag\": \"\"}",
@@ -54,6 +54,39 @@
"errors": null,
"id": 1,
"input_connections": {},
+ "inputs": [
+ {
+ "description": "",
+ "name": "Haplotype"
+ }
+ ],
+ "label": "Haplotype",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 10.342401705473666,
+ "top": 303.58456411376267
+ },
+ "tool_id": null,
+ "tool_state": "{\"restrictions\": [\"hap1\", \"hap2\", \"mat\", \"pat\", \"pri\", \"alt\"], \"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "3495a63c-bcd5-45fa-b327-ed7ec0234e78",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "1c4419fd-2eca-4464-9a67-4d693379981b"
+ }
+ ]
+ },
+ "2": {
+ "annotation": "",
+ "content_id": null,
+ "errors": null,
+ "id": 2,
+ "input_connections": {},
"inputs": [
{
"description": "",
@@ -65,7 +98,7 @@
"outputs": [],
"position": {
"left": 2.48046875,
- "top": 320.09375
+ "top": 376.72512388867335
},
"tool_id": null,
"tool_state": "{\"optional\": true, \"tag\": \"\"}",
@@ -77,15 +110,48 @@
{
"label": null,
"output_name": "output",
- "uuid": "bd94bf34-0ed3-42f3-888d-36a56e74ff5b"
+ "uuid": "8886e85a-6c79-49f0-8291-357583692bec"
}
]
},
- "2": {
+ "3": {
+ "annotation": "",
+ "content_id": null,
+ "errors": null,
+ "id": 3,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "",
+ "name": "Database for Busco Lineage"
+ }
+ ],
+ "label": "Database for Busco Lineage",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 68.35425980970838,
+ "top": 470.1469275367371
+ },
+ "tool_id": null,
+ "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "1f4997fc-1880-4416-8857-2a63d3501a6c",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "bcb451a9-4588-4f66-97e9-e49a090b1355"
+ }
+ ]
+ },
+ "4": {
"annotation": "Taxonomic lineage for the organism being assembled for Busco analysis\n",
"content_id": null,
"errors": null,
- "id": 2,
+ "id": 4,
"input_connections": {},
"inputs": [
{
@@ -97,8 +163,8 @@
"name": "Input parameter",
"outputs": [],
"position": {
- "left": 89.68318337500133,
- "top": 487.5
+ "left": 84.74928132295123,
+ "top": 557.2895276233144
},
"tool_id": null,
"tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
@@ -110,15 +176,15 @@
{
"label": null,
"output_name": "output",
- "uuid": "18fe353c-d723-4118-a78c-f3237fe81064"
+ "uuid": "9a90c250-d96c-40eb-8899-8458190ba51f"
}
]
},
- "3": {
+ "5": {
"annotation": "Forward reads as a single dataset in fastq format",
"content_id": null,
"errors": null,
- "id": 3,
+ "id": 5,
"input_connections": {},
"inputs": [
{
@@ -131,7 +197,7 @@
"outputs": [],
"position": {
"left": 86.05427712500133,
- "top": 566.625
+ "top": 623.2563738886734
},
"tool_id": null,
"tool_state": "{\"optional\": false, \"format\": [\"fastqsanger\", \"fastqsanger.gz\"], \"tag\": \"\"}",
@@ -141,11 +207,11 @@
"when": null,
"workflow_outputs": []
},
- "4": {
+ "6": {
"annotation": "Reverse reads as a single dataset in fastq format",
"content_id": null,
"errors": null,
- "id": 4,
+ "id": 6,
"input_connections": {},
"inputs": [
{
@@ -158,7 +224,7 @@
"outputs": [],
"position": {
"left": 86.54255837500133,
- "top": 673.9453125
+ "top": 730.5766863886734
},
"tool_id": null,
"tool_state": "{\"optional\": false, \"format\": [\"fastqsanger\", \"fastqsanger.gz\"], \"tag\": \"\"}",
@@ -168,11 +234,11 @@
"when": null,
"workflow_outputs": []
},
- "5": {
+ "7": {
"annotation": "Restriction enzymes used in preparation of Hi-C libraries.",
"content_id": null,
"errors": null,
- "id": 5,
+ "id": 7,
"input_connections": {},
"inputs": [
{
@@ -185,7 +251,7 @@
"outputs": [],
"position": {
"left": 95.12778237364729,
- "top": 786.2561485229093
+ "top": 842.8875224115826
},
"tool_id": null,
"tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}",
@@ -197,15 +263,15 @@
{
"label": null,
"output_name": "output",
- "uuid": "05045d94-abce-486e-b4d7-8760cdcb4c96"
+ "uuid": "d1463002-620e-4349-917e-8b04f8683ccc"
}
]
},
- "6": {
+ "8": {
"annotation": "Estimated genome size from contiging workflow",
"content_id": null,
"errors": null,
- "id": 6,
+ "id": 8,
"input_connections": {},
"inputs": [
{
@@ -218,7 +284,7 @@
"outputs": [],
"position": {
"left": 112.3863140301566,
- "top": 915.1585681126172
+ "top": 971.7899420012906
},
"tool_id": null,
"tool_state": "{\"optional\": false, \"tag\": \"\"}",
@@ -228,11 +294,11 @@
"when": null,
"workflow_outputs": []
},
- "7": {
+ "9": {
"annotation": "",
"content_id": null,
"errors": null,
- "id": 7,
+ "id": 9,
"input_connections": {},
"inputs": [
{
@@ -245,7 +311,7 @@
"outputs": [],
"position": {
"left": 123.13630837500133,
- "top": 1019.3125
+ "top": 1075.9438738886734
},
"tool_id": null,
"tool_state": "{\"optional\": true, \"tag\": \"\"}",
@@ -257,18 +323,57 @@
{
"label": null,
"output_name": "output",
- "uuid": "e3d9a2a4-63b2-48fa-9584-6430dcd538da"
+ "uuid": "0229d700-2a03-4279-a262-41f91d5592ef"
}
]
},
- "8": {
+ "10": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1",
+ "errors": null,
+ "id": 10,
+ "input_connections": {
+ "components_1|param_type|component_value": {
+ "id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "Compose text parameter value",
+ "outputs": [
+ {
+ "name": "out1",
+ "type": "expression.json"
+ }
+ ],
+ "position": {
+ "left": 575.321650631235,
+ "top": 257.5874681714306
+ },
+ "post_job_actions": {},
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1",
+ "tool_shed_repository": {
+ "changeset_revision": "e188c9826e0f",
+ "name": "compose_text_param",
+ "owner": "iuc",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"components\": [{\"__index__\": 0, \"param_type\": {\"select_param_type\": \"text\", \"__current_case__\": 0, \"component_value\": \"$&.\"}}, {\"__index__\": 1, \"param_type\": {\"select_param_type\": \"text\", \"__current_case__\": 0, \"component_value\": {\"__class__\": \"ConnectedValue\"}}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "0.1.1",
+ "type": "tool",
+ "uuid": "0951bd8c-a2c2-4bd4-b4aa-4b090bf19857",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "11": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 8,
+ "id": 11,
"input_connections": {
"input1": {
- "id": 6,
+ "id": 8,
"output_name": "output"
}
},
@@ -283,7 +388,7 @@
],
"position": {
"left": 2604.859933120587,
- "top": 1694.171875
+ "top": 1750.8032488886734
},
"post_job_actions": {
"HideDatasetActioninteger_param": {
@@ -300,18 +405,18 @@
"when": null,
"workflow_outputs": []
},
- "9": {
+ "12": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 9,
+ "id": 12,
"input_connections": {
"input_file": {
"id": 0,
"output_name": "output"
},
"mode_condition|swiss_army_knife": {
- "id": 7,
+ "id": 9,
"output_name": "output"
}
},
@@ -325,8 +430,8 @@
}
],
"position": {
- "left": 375.7027587890625,
- "top": 20.10939582812449
+ "left": 549.7874537793828,
+ "top": 0
},
"post_job_actions": {},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
@@ -343,18 +448,18 @@
"when": null,
"workflow_outputs": []
},
- "10": {
+ "13": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1",
"errors": null,
- "id": 10,
+ "id": 13,
"input_connections": {
"fastq_input|fastq_input1": {
- "id": 3,
+ "id": 5,
"output_name": "output"
},
"reference_source|ref_file": {
- "id": 9,
+ "id": 12,
"output_name": "output"
}
},
@@ -369,7 +474,7 @@
],
"position": {
"left": 1457.9766031901042,
- "top": 515.8124593098959
+ "top": 572.4438331985692
},
"post_job_actions": {
"HideDatasetActionbam_output": {
@@ -392,18 +497,18 @@
"when": null,
"workflow_outputs": []
},
- "11": {
+ "14": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1",
"errors": null,
- "id": 11,
+ "id": 14,
"input_connections": {
"fastq_input|fastq_input1": {
- "id": 4,
+ "id": 6,
"output_name": "output"
},
"reference_source|ref_file": {
- "id": 9,
+ "id": 12,
"output_name": "output"
}
},
@@ -418,7 +523,7 @@
],
"position": {
"left": 1367.45654296875,
- "top": 956.0625208281244
+ "top": 1012.6938947167978
},
"post_job_actions": {
"HideDatasetActionbam_output": {
@@ -441,18 +546,18 @@
"when": null,
"workflow_outputs": []
},
- "12": {
+ "15": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy1",
"errors": null,
- "id": 12,
+ "id": 15,
"input_connections": {
"forward": {
- "id": 10,
+ "id": 13,
"output_name": "bam_output"
},
"reverse": {
- "id": 11,
+ "id": 14,
"output_name": "bam_output"
}
},
@@ -467,7 +572,7 @@
],
"position": {
"left": 1700.3286831205874,
- "top": 753.28125
+ "top": 809.9126238886734
},
"post_job_actions": {
"TagDatasetActionoutfile": {
@@ -492,14 +597,14 @@
"when": null,
"workflow_outputs": []
},
- "13": {
+ "16": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pretext_map/pretext_map/0.1.9+galaxy1",
"errors": null,
- "id": 13,
+ "id": 16,
"input_connections": {
"input": {
- "id": 12,
+ "id": 15,
"output_name": "outfile"
}
},
@@ -514,7 +619,7 @@
],
"position": {
"left": 1958.5879278674058,
- "top": 981.2891393226516
+ "top": 1037.920513211325
},
"post_job_actions": {
"TagDatasetActionpretext_map_out": {
@@ -539,26 +644,26 @@
"when": null,
"workflow_outputs": []
},
- "14": {
+ "17": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/yahs/yahs/1.2a.2+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/yahs/yahs/1.2a.2+galaxy2",
"errors": null,
- "id": 14,
+ "id": 17,
"input_connections": {
"function|agp": {
- "id": 1,
+ "id": 2,
"output_name": "output"
},
"function|bfile": {
- "id": 12,
+ "id": 15,
"output_name": "outfile"
},
"function|enzyme_conditional|preconfigured_enzymes": {
- "id": 5,
+ "id": 7,
"output_name": "output"
},
"function|fasta": {
- "id": 9,
+ "id": 12,
"output_name": "output"
}
},
@@ -592,8 +697,8 @@
}
],
"position": {
- "left": 2484.703683120587,
- "top": 0
+ "left": 2428.507728798088,
+ "top": 75.37488064879821
},
"post_job_actions": {
"TagDatasetActionfinal_agp_out": {
@@ -618,15 +723,15 @@
"output_name": "log_file"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/yahs/yahs/1.2a.2+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/yahs/yahs/1.2a.2+galaxy2",
"tool_shed_repository": {
- "changeset_revision": "425e63adcc5d",
+ "changeset_revision": "ff4031bfaa22",
"name": "yahs",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"function\": {\"function_select\": \"yahs\", \"__current_case__\": 0, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"bfile\": {\"__class__\": \"ConnectedValue\"}, \"agp\": {\"__class__\": \"ConnectedValue\"}, \"res\": \"\", \"enzyme_conditional\": {\"enzyme_options\": \"preconfigured\", \"__current_case__\": 1, \"preconfigured_enzymes\": {\"__class__\": \"ConnectedValue\"}}, \"length\": null, \"quality\": null, \"no_contig_ec\": true, \"no_scaffold_ec\": false}, \"log_out\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.2a.2+galaxy1",
+ "tool_version": "1.2a.2+galaxy2",
"type": "tool",
"uuid": "b3b3bfbc-39b4-4302-967a-220420e3fd36",
"when": null,
@@ -638,14 +743,14 @@
}
]
},
- "15": {
+ "18": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy2",
"errors": null,
- "id": 15,
+ "id": 18,
"input_connections": {
"input": {
- "id": 13,
+ "id": 16,
"output_name": "pretext_map_out"
}
},
@@ -660,7 +765,7 @@
],
"position": {
"left": 2228.703683120587,
- "top": 971.375
+ "top": 1028.0063738886734
},
"post_job_actions": {
"HideDatasetActionpretext_snap_out": {
@@ -690,78 +795,57 @@
"when": null,
"workflow_outputs": []
},
- "16": {
+ "19": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"errors": null,
- "id": 16,
+ "id": 19,
"input_connections": {
- "input_file": {
- "id": 9,
- "output_name": "output"
+ "find_and_replace_0|replace_pattern": {
+ "id": 10,
+ "output_name": "out1"
},
- "mode_condition|agp_to_path": {
- "id": 14,
+ "infile": {
+ "id": 17,
"output_name": "final_agp_out"
}
},
"inputs": [],
"label": null,
- "name": "gfastats",
+ "name": "Replace",
"outputs": [
{
- "name": "output",
- "type": "fastq"
+ "name": "outfile",
+ "type": "input"
}
],
"position": {
- "left": 2827.99169921875,
- "top": 128.21483406054637
+ "left": 2731.4255834607197,
+ "top": 279.56293485765923
},
- "post_job_actions": {
- "RenameDatasetActionoutput": {
- "action_arguments": {
- "newname": "Reconciliated Scaffolds: gfa"
- },
- "action_type": "RenameDatasetAction",
- "output_name": "output"
- },
- "TagDatasetActionoutput": {
- "action_arguments": {
- "tags": "s2_gfa"
- },
- "action_type": "TagDatasetAction",
- "output_name": "output"
- }
- },
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
+ "post_job_actions": {},
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "3ef480892a9f",
- "name": "gfastats",
+ "changeset_revision": "86755160afbf",
+ "name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"mode_condition\": {\"selector\": \"scaffolding\", \"__current_case__\": 2, \"agp_to_path\": {\"__class__\": \"ConnectedValue\"}, \"discover_paths\": false}, \"target_condition\": {\"target_option\": \"false\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.3.6+galaxy0",
+ "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"scaffold_[0-9]*\", \"replace_pattern\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": true, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
- "uuid": "c9168832-ba68-4d06-bbba-86e6b1b82d5f",
+ "uuid": "4d5d4a06-e906-4c73-8159-050d49158dd3",
"when": null,
- "workflow_outputs": [
- {
- "label": "Reconciliated Scaffolds: gfa",
- "output_name": "output",
- "uuid": "61df9811-7dff-4c08-a06f-635d9f857a95"
- }
- ]
+ "workflow_outputs": []
},
- "17": {
+ "20": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 17,
+ "id": 20,
"input_connections": {
"input": {
- "id": 15,
+ "id": 18,
"output_name": "pretext_snap_out"
}
},
@@ -776,7 +860,7 @@
],
"position": {
"left": 2598.922433120587,
- "top": 1090.8125
+ "top": 1147.4438738886734
},
"post_job_actions": {
"TagDatasetActionoutput": {
@@ -801,18 +885,82 @@
}
]
},
- "18": {
+ "21": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 18,
+ "id": 21,
"input_connections": {
"input_file": {
- "id": 16,
+ "id": 12,
+ "output_name": "output"
+ },
+ "mode_condition|agp_to_path": {
+ "id": 19,
+ "output_name": "outfile"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "gfastats",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "fastq"
+ }
+ ],
+ "position": {
+ "left": 2980.8553742983104,
+ "top": 170.84821193597745
+ },
+ "post_job_actions": {
+ "RenameDatasetActionoutput": {
+ "action_arguments": {
+ "newname": "Reconciliated Scaffolds: gfa"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "output"
+ },
+ "TagDatasetActionoutput": {
+ "action_arguments": {
+ "tags": "s2_gfa"
+ },
+ "action_type": "TagDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
+ "tool_shed_repository": {
+ "changeset_revision": "3ef480892a9f",
+ "name": "gfastats",
+ "owner": "bgruening",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"mode_condition\": {\"selector\": \"scaffolding\", \"__current_case__\": 2, \"agp_to_path\": {\"__class__\": \"ConnectedValue\"}, \"discover_paths\": false}, \"target_condition\": {\"target_option\": \"false\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.3.6+galaxy0",
+ "type": "tool",
+ "uuid": "c9168832-ba68-4d06-bbba-86e6b1b82d5f",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Reconciliated Scaffolds: gfa",
+ "output_name": "output",
+ "uuid": "61df9811-7dff-4c08-a06f-635d9f857a95"
+ }
+ ]
+ },
+ "22": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
+ "errors": null,
+ "id": 22,
+ "input_connections": {
+ "input_file": {
+ "id": 21,
"output_name": "output"
},
"mode_condition|swiss_army_knife": {
- "id": 7,
+ "id": 9,
"output_name": "output"
}
},
@@ -827,7 +975,7 @@
],
"position": {
"left": 3252.188058120587,
- "top": 324.421875
+ "top": 381.05324888867335
},
"post_job_actions": {
"TagDatasetActionoutput": {
@@ -858,18 +1006,18 @@
}
]
},
- "19": {
+ "23": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 19,
+ "id": 23,
"input_connections": {
"input_file": {
- "id": 16,
+ "id": 21,
"output_name": "output"
},
"mode_condition|statistics_condition|expected_genomesize": {
- "id": 8,
+ "id": 11,
"output_name": "integer_param"
}
},
@@ -884,7 +1032,7 @@
],
"position": {
"left": 3711.719308120587,
- "top": 1761.203125
+ "top": 1817.8344988886734
},
"post_job_actions": {
"TagDatasetActionstats": {
@@ -915,14 +1063,14 @@
}
]
},
- "20": {
+ "24": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0",
"errors": null,
- "id": 20,
+ "id": 24,
"input_connections": {
"input_file": {
- "id": 16,
+ "id": 21,
"output_name": "output"
}
},
@@ -937,7 +1085,7 @@
],
"position": {
"left": 3839.375558120587,
- "top": 1568.171875
+ "top": 1624.8032488886734
},
"post_job_actions": {
"TagDatasetActionstats": {
@@ -968,18 +1116,18 @@
}
]
},
- "21": {
+ "25": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1",
"errors": null,
- "id": 21,
+ "id": 25,
"input_connections": {
"fastq_input|fastq_input1": {
- "id": 3,
+ "id": 5,
"output_name": "output"
},
"reference_source|ref_file": {
- "id": 18,
+ "id": 22,
"output_name": "output"
}
},
@@ -994,7 +1142,7 @@
],
"position": {
"left": 3499.078683120587,
- "top": 550.453125
+ "top": 607.0844988886734
},
"post_job_actions": {
"HideDatasetActionbam_output": {
@@ -1017,18 +1165,18 @@
"when": null,
"workflow_outputs": []
},
- "22": {
+ "26": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1",
"errors": null,
- "id": 22,
+ "id": 26,
"input_connections": {
"fastq_input|fastq_input1": {
- "id": 4,
+ "id": 6,
"output_name": "output"
},
"reference_source|ref_file": {
- "id": 18,
+ "id": 22,
"output_name": "output"
}
},
@@ -1043,7 +1191,7 @@
],
"position": {
"left": 3497.922433120587,
- "top": 828.171875
+ "top": 884.8032488886734
},
"post_job_actions": {
"HideDatasetActionbam_output": {
@@ -1066,18 +1214,22 @@
"when": null,
"workflow_outputs": []
},
- "23": {
+ "27": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0",
"errors": null,
- "id": 23,
+ "id": 27,
"input_connections": {
"input": {
- "id": 18,
+ "id": 22,
+ "output_name": "output"
+ },
+ "lineage_conditional|cached_db": {
+ "id": 3,
"output_name": "output"
},
"lineage|lineage_dataset": {
- "id": 2,
+ "id": 4,
"output_name": "output"
}
},
@@ -1103,8 +1255,8 @@
}
],
"position": {
- "left": 3784.714433375001,
- "top": 276.07421875
+ "left": 3784.7033413689933,
+ "top": 301.3947338398648
},
"post_job_actions": {
"TagDatasetActionbusco_missing": {
@@ -1143,32 +1295,32 @@
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"missing\", \"image\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": {\"__class__\": \"ConnectedValue\"}}, \"lineage_conditional\": {\"selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"short_summary\", \"missing\", \"image\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "5.5.0+galaxy0",
"type": "tool",
"uuid": "c30b907f-05c9-4709-a939-b66f52daf6e4",
"when": null,
"workflow_outputs": [
- {
- "label": "Busco Summary image",
- "output_name": "summary_image",
- "uuid": "cf7a5b93-9021-4029-8107-015787fa2ca5"
- },
{
"label": "Busco Summary",
"output_name": "busco_sum",
"uuid": "49589149-e16f-4a88-9d84-c1b06288021f"
+ },
+ {
+ "label": "Busco Summary image",
+ "output_name": "summary_image",
+ "uuid": "cf7a5b93-9021-4029-8107-015787fa2ca5"
}
]
},
- "24": {
+ "28": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"errors": null,
- "id": 24,
+ "id": 28,
"input_connections": {
"infile": {
- "id": 19,
+ "id": 23,
"output_name": "stats"
}
},
@@ -1183,7 +1335,7 @@
],
"position": {
"left": 4038.9643691913197,
- "top": 1953.52949196313
+ "top": 2010.1608658518035
},
"post_job_actions": {
"HideDatasetActionoutfile": {
@@ -1194,12 +1346,12 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#\", \"replace_pattern\": \"Number of\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#\", \"replace_pattern\": \"Number of\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "4b0a88b6-47cc-4381-949c-fc18a99799ac",
@@ -1212,12 +1364,12 @@
}
]
},
- "25": {
+ "29": {
"annotation": "",
- "id": 25,
+ "id": 29,
"input_connections": {
"gfa_stats": {
- "id": 20,
+ "id": 24,
"input_subworkflow_step_id": 0,
"output_name": "stats"
}
@@ -1228,7 +1380,7 @@
"outputs": [],
"position": {
"left": 4372.234933120587,
- "top": 1677.609375
+ "top": 1734.2407488886734
},
"subworkflow": {
"a_galaxy_workflow": "true",
@@ -1336,7 +1488,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1575,7 +1727,7 @@
}
},
"tags": [],
- "uuid": "0a29c4ba-6eeb-4812-85dd-4c5a5682d8cf"
+ "uuid": "b30c8dd0-24e7-4e74-ad9b-5fefd27893fa"
},
"tool_id": null,
"type": "subworkflow",
@@ -1583,18 +1735,18 @@
"when": null,
"workflow_outputs": []
},
- "26": {
+ "30": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy1",
"errors": null,
- "id": 26,
+ "id": 30,
"input_connections": {
"forward": {
- "id": 21,
+ "id": 25,
"output_name": "bam_output"
},
"reverse": {
- "id": 22,
+ "id": 26,
"output_name": "bam_output"
}
},
@@ -1609,7 +1761,7 @@
],
"position": {
"left": 3801.906808120587,
- "top": 827.390625
+ "top": 884.0219988886734
},
"post_job_actions": {
"TagDatasetActionoutfile": {
@@ -1634,14 +1786,14 @@
"when": null,
"workflow_outputs": []
},
- "27": {
+ "31": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 27,
+ "id": 31,
"input_connections": {
"input": {
- "id": 25,
+ "id": 29,
"output_name": "gfastats data for plotting"
}
},
@@ -1656,7 +1808,7 @@
],
"position": {
"left": 4935.641183120587,
- "top": 1404.421875
+ "top": 1461.0532488886734
},
"post_job_actions": {},
"tool_id": "Cut1",
@@ -1667,14 +1819,14 @@
"when": null,
"workflow_outputs": []
},
- "28": {
+ "32": {
"annotation": "",
"content_id": "Cut1",
"errors": null,
- "id": 28,
+ "id": 32,
"input_connections": {
"input": {
- "id": 25,
+ "id": 29,
"output_name": "gfastats data for plotting"
}
},
@@ -1689,7 +1841,7 @@
],
"position": {
"left": 4937.672433120587,
- "top": 1545.40625
+ "top": 1602.0376238886734
},
"post_job_actions": {
"HideDatasetActionout_file1": {
@@ -1706,14 +1858,14 @@
"when": null,
"workflow_outputs": []
},
- "29": {
+ "33": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pretext_map/pretext_map/0.1.9+galaxy1",
"errors": null,
- "id": 29,
+ "id": 33,
"input_connections": {
"input": {
- "id": 26,
+ "id": 30,
"output_name": "outfile"
}
},
@@ -1728,7 +1880,7 @@
],
"position": {
"left": 4140.766183120587,
- "top": 961.375
+ "top": 1018.0063738886734
},
"post_job_actions": {
"TagDatasetActionpretext_map_out": {
@@ -1753,14 +1905,14 @@
"when": null,
"workflow_outputs": []
},
- "30": {
+ "34": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.31.1+galaxy0",
"errors": null,
- "id": 30,
+ "id": 34,
"input_connections": {
"input": {
- "id": 26,
+ "id": 30,
"output_name": "outfile"
}
},
@@ -1775,7 +1927,7 @@
],
"position": {
"left": 4282.953683120587,
- "top": 721.03125
+ "top": 777.6626238886734
},
"post_job_actions": {
"HideDatasetActionoutput": {
@@ -1798,14 +1950,14 @@
"when": null,
"workflow_outputs": []
},
- "31": {
+ "35": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.4.0+galaxy1",
"errors": null,
- "id": 31,
+ "id": 35,
"input_connections": {
"input1": {
- "id": 27,
+ "id": 31,
"output_name": "out_file1"
}
},
@@ -1820,7 +1972,7 @@
],
"position": {
"left": 5215.016183120587,
- "top": 1327.078125
+ "top": 1383.7094988886734
},
"post_job_actions": {
"RenameDatasetActionoutput1": {
@@ -1858,14 +2010,14 @@
}
]
},
- "32": {
+ "36": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.4.0+galaxy1",
"errors": null,
- "id": 32,
+ "id": 36,
"input_connections": {
"input1": {
- "id": 28,
+ "id": 32,
"output_name": "out_file1"
}
},
@@ -1880,7 +2032,7 @@
],
"position": {
"left": 5206.734933120587,
- "top": 1561.296875
+ "top": 1617.9282488886734
},
"post_job_actions": {
"RenameDatasetActionoutput1": {
@@ -1918,14 +2070,14 @@
}
]
},
- "33": {
+ "37": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy2",
"errors": null,
- "id": 33,
+ "id": 37,
"input_connections": {
"input": {
- "id": 29,
+ "id": 33,
"output_name": "pretext_map_out"
}
},
@@ -1940,7 +2092,7 @@
],
"position": {
"left": 4509.1334844570965,
- "top": 1064.8994221213547
+ "top": 1121.530796010028
},
"post_job_actions": {
"HideDatasetActionpretext_snap_out": {
@@ -1970,14 +2122,14 @@
"when": null,
"workflow_outputs": []
},
- "34": {
+ "38": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1",
"errors": null,
- "id": 34,
+ "id": 38,
"input_connections": {
"infile": {
- "id": 30,
+ "id": 34,
"output_name": "output"
}
},
@@ -1992,7 +2144,7 @@
],
"position": {
"left": 4596.258316145335,
- "top": 390.1009386788954
+ "top": 446.7323125675687
},
"post_job_actions": {
"TagDatasetActionoutfile": {
@@ -2005,7 +2157,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -2017,14 +2169,14 @@
"when": null,
"workflow_outputs": []
},
- "35": {
+ "39": {
"annotation": "",
"content_id": "__EXTRACT_DATASET__",
"errors": null,
- "id": 35,
+ "id": 39,
"input_connections": {
"input": {
- "id": 33,
+ "id": 37,
"output_name": "pretext_snap_out"
}
},
@@ -2039,7 +2191,7 @@
],
"position": {
"left": 4773.453683120587,
- "top": 1125.96875
+ "top": 1182.6001238886734
},
"post_job_actions": {
"TagDatasetActionoutput": {
@@ -2068,6 +2220,6 @@
"tags": [
"VGP_curated"
],
- "uuid": "88cb8c3c-791b-4ab8-b982-4811f6f94630",
- "version": 5
+ "uuid": "dbe64df1-13fc-49fa-8a14-ead72f9d7ea1",
+ "version": 7
}
\ No newline at end of file
diff --git a/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/CHANGELOG.md b/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/CHANGELOG.md
index 0b3001964..02da3755e 100644
--- a/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## [0.1.7] 2024-08-05
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0`
+
## [0.1.6] 2024-07-12
- Add workflow report
diff --git a/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/kmer-profiling-hifi-VGP1-tests.yml b/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/kmer-profiling-hifi-VGP1-tests.yml
index 7c28a630e..3f79a85b4 100644
--- a/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/kmer-profiling-hifi-VGP1-tests.yml
+++ b/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/kmer-profiling-hifi-VGP1-tests.yml
@@ -12,22 +12,18 @@
Ploidy: 1
outputs:
GenomeScope linear plot:
- class: File
file: test-data/GenomeScope_Linear_plot.png
compare: sim_size
delta: 10000
GenomeScope log plot:
- class: File
file: test-data/GenomeScope_Log_plot.png
compare: sim_size
delta: 10000
GenomeScope transformed linear plot:
- class: File
file: test-data/GenomeScope_Transformed_linear_plot.png
compare: sim_size
delta: 10000
GenomeScope transformed log plot:
- class: File
file: test-data/GenomeScope_Transformed_log_plot.png
compare: sim_size
delta: 10000
diff --git a/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/kmer-profiling-hifi-VGP1.ga b/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/kmer-profiling-hifi-VGP1.ga
index b3a112c3b..3e5142b9b 100644
--- a/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/kmer-profiling-hifi-VGP1.ga
+++ b/workflows/VGP-assembly-v2/kmer-profiling-hifi-VGP1/kmer-profiling-hifi-VGP1.ga
@@ -15,7 +15,7 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release":"0.1.6",
+ "release": "0.1.7",
"name": "kmer-profiling-hifi-VGP1",
"report": {
"markdown": "\n# Workflow Execution Report\n\n\n```galaxy\ninvocation_time()\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"GenomeScope linear plot\")\n```\n\n```galaxy\nhistory_dataset_as_image(output=\"GenomeScope log plot\")\n```\n\n```galaxy\nhistory_dataset_as_image(output=\"GenomeScope transformed linear plot\")\n```\n\n```galaxy\nhistory_dataset_as_image(output=\"GenomeScope transformed log plot\")\n```\n\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n"
@@ -251,7 +251,7 @@
},
"6": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0",
"errors": null,
"id": 6,
"input_connections": {
@@ -356,15 +356,15 @@
"output_name": "transformed_log_plot"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "01210c4e9144",
+ "changeset_revision": "460fad600dce",
"name": "genomescope",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"advanced_options\": {\"topology\": null, \"initial_repetitiveness\": null, \"initial_heterozygosities\": \"\", \"transform_exp\": null, \"testing\": true, \"true_params\": \"\", \"trace_flag\": false, \"num_rounds\": null}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_length\": {\"__class__\": \"ConnectedValue\"}, \"lambda\": null, \"max_kmercov\": null, \"output_options\": {\"output_files\": [\"model_output\", \"summary_output\"], \"no_unique_sequence\": false}, \"ploidy\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.0+galaxy2",
+ "tool_version": "2.0.1+galaxy0",
"type": "tool",
"uuid": "955de351-ef19-42dc-89d7-ca213994515a",
"when": null,
@@ -408,4 +408,4 @@
],
"uuid": "0808b15a-7e3e-4b06-b804-f3d2cc73981a",
"version": 2
-}
\ No newline at end of file
+}
diff --git a/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/CHANGELOG.md b/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/CHANGELOG.md
index 06a53f900..9fd63f4a8 100644
--- a/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/CHANGELOG.md
+++ b/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## [0.1.4] 2024-08-05
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0`
+
## [0.1.3] 2023-11-20
- Fix author in dockstore
diff --git a/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/kmer-profiling-hifi-trio-VGP2-tests.yml b/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/kmer-profiling-hifi-trio-VGP2-tests.yml
index 1d9044cfb..43888eb13 100644
--- a/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/kmer-profiling-hifi-trio-VGP2-tests.yml
+++ b/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/kmer-profiling-hifi-trio-VGP2-tests.yml
@@ -36,17 +36,14 @@
Ploidy: 1
outputs:
GenomeScope linear plot (maternal):
- class: File
file: test-data/GenomeScope_Linear_plot_maternal.png
compare: sim_size
delta: 15000
GenomeScope linear plot (paternal):
- class: File
file: test-data/GenomeScope_Linear_plot_paternal.png
compare: sim_size
delta: 15000
GenomeScope linear plot (child):
- class: File
file: test-data/GenomeScope_Linear_plot_child.png
compare: sim_size
delta: 15000
diff --git a/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/kmer-profiling-hifi-trio-VGP2.ga b/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/kmer-profiling-hifi-trio-VGP2.ga
index 11c7afc43..f374f3a93 100644
--- a/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/kmer-profiling-hifi-trio-VGP2.ga
+++ b/workflows/VGP-assembly-v2/kmer-profiling-hifi-trio-VGP2/kmer-profiling-hifi-trio-VGP2.ga
@@ -14,7 +14,7 @@
],
"format-version": "0.1",
"license": "CC-BY-4.0",
- "release": "0.1.3",
+ "release": "0.1.4",
"name": "kmer-profiling-hifi-trio-VGP2",
"steps": {
"0": {
@@ -442,7 +442,7 @@
},
"9": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0",
"errors": null,
"id": 9,
"input_connections": {
@@ -547,15 +547,15 @@
"output_name": "transformed_log_plot"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "01210c4e9144",
+ "changeset_revision": "460fad600dce",
"name": "genomescope",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"advanced_options\": {\"topology\": null, \"initial_repetitiveness\": null, \"initial_heterozygosities\": \"\", \"transform_exp\": null, \"testing\": true, \"true_params\": \"\", \"trace_flag\": false, \"num_rounds\": null}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_length\": {\"__class__\": \"ConnectedValue\"}, \"lambda\": null, \"max_kmercov\": null, \"output_options\": {\"output_files\": [\"model_output\", \"summary_output\"], \"no_unique_sequence\": false}, \"ploidy\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.0+galaxy2",
+ "tool_version": "2.0.1+galaxy0",
"type": "tool",
"uuid": "12e75ec0-5722-4ad7-b333-636c3c9ad9c8",
"when": null,
@@ -729,7 +729,7 @@
},
"13": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0",
"errors": null,
"id": 13,
"input_connections": {
@@ -833,15 +833,15 @@
"output_name": "transformed_log_plot"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "01210c4e9144",
+ "changeset_revision": "460fad600dce",
"name": "genomescope",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"advanced_options\": {\"topology\": null, \"initial_repetitiveness\": null, \"initial_heterozygosities\": \"\", \"transform_exp\": null, \"testing\": false, \"true_params\": \"\", \"trace_flag\": false, \"num_rounds\": null}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_length\": {\"__class__\": \"ConnectedValue\"}, \"lambda\": null, \"max_kmercov\": null, \"output_options\": {\"output_files\": [\"model_output\", \"summary_output\"], \"no_unique_sequence\": false}, \"ploidy\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.0+galaxy2",
+ "tool_version": "2.0.1+galaxy0",
"type": "tool",
"uuid": "c65bd0f5-d8d5-4d1d-81bf-6d05458bc160",
"when": null,
@@ -870,7 +870,7 @@
},
"14": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0",
"errors": null,
"id": 14,
"input_connections": {
@@ -974,15 +974,15 @@
"output_name": "transformed_log_plot"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "01210c4e9144",
+ "changeset_revision": "460fad600dce",
"name": "genomescope",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"advanced_options\": {\"topology\": null, \"initial_repetitiveness\": null, \"initial_heterozygosities\": \"\", \"transform_exp\": null, \"testing\": false, \"true_params\": \"\", \"trace_flag\": false, \"num_rounds\": null}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_length\": {\"__class__\": \"ConnectedValue\"}, \"lambda\": null, \"max_kmercov\": null, \"output_options\": {\"output_files\": [\"model_output\", \"summary_output\"], \"no_unique_sequence\": false}, \"ploidy\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.0+galaxy2",
+ "tool_version": "2.0.1+galaxy0",
"type": "tool",
"uuid": "87497ba1-5c23-4852-9e2f-0bd78dc86753",
"when": null,
@@ -1016,4 +1016,4 @@
],
"uuid": "af01815b-5b66-4578-ade7-6e2caed0c19a",
"version": 9
-}
\ No newline at end of file
+}
diff --git a/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/.dockstore.yml b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/.dockstore.yml
new file mode 100644
index 000000000..2031035d2
--- /dev/null
+++ b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/.dockstore.yml
@@ -0,0 +1,25 @@
+version: 1.2
+workflows:
+- name: QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis
+ subclass: Galaxy
+ publish: true
+ primaryDescriptorPath: /QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis.ga
+ testParameterFiles:
+ - /QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis-tests.yml
+ authors:
+ - name: Debjyoti Ghosh
+ orcid: 0009-0008-1496-1677
+ - name: "Helmholtz-Zentrum für Umweltforschung - UFZ"
+ address: "Permoserstraße 15, 04318 Leipzig"
+
+- name: QIIME2-VI-diversity-metrics-and-estimations
+ subclass: Galaxy
+ publish: true
+ primaryDescriptorPath: /QIIME2-VI-diversity-metrics-and-estimations.ga
+ testParameterFiles:
+ - /QIIME2-VI-diversity-metrics-and-estimations-tests.yml
+ authors:
+ - name: Debjyoti Ghosh
+ orcid: 0009-0008-1496-1677
+ - name: "Helmholtz-Zentrum für Umweltforschung - UFZ"
+ address: "Permoserstraße 15, 04318 Leipzig"
\ No newline at end of file
diff --git a/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/.workflowhub.yml b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/.workflowhub.yml
new file mode 100644
index 000000000..2a1023efd
--- /dev/null
+++ b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/.workflowhub.yml
@@ -0,0 +1,5 @@
+version: '0.1'
+registries:
+- url: https://workflowhub.eu
+ project: iwc
+ workflow: qiime2/main
diff --git a/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/CHANGELOG.md b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/CHANGELOG.md
new file mode 100644
index 000000000..7df9c9552
--- /dev/null
+++ b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/CHANGELOG.md
@@ -0,0 +1,4 @@
+# Changelog
+
+## [0.1] 2024-06-22
+First release.
\ No newline at end of file
diff --git a/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis-tests.yml b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis-tests.yml
new file mode 100644
index 000000000..b5cf8d512
--- /dev/null
+++ b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis-tests.yml
@@ -0,0 +1,108 @@
+- doc: Test outline for QIIME2-III:-Phylogenetic-tree-for-diversity-analysis
+ job:
+ Metadata:
+ class: File
+ location: https://data.qiime2.org/2024.2/tutorials/pd-mice/sample_metadata.tsv
+ filetype: tabular
+ Representative sequences:
+ class: File
+ location: https://docs.qiime2.org/2024.2/data/tutorials/pd-mice/dada2_rep_set.qza
+ filetype: qza
+ Feature table:
+ class: File
+ location: https://docs.qiime2.org/2024.2/data/tutorials/pd-mice/dada2_table.qza
+ filetype: qza
+ Minimum depth: 1
+ Maximum depth: 2019
+ Taxonomic classifier:
+ class: File
+ location: https://docs.qiime2.org/2024.2/data/tutorials/pd-mice/gg-13-8-99-515-806-nb-classifier.qza
+ filetype: qza
+ SEPP fragment insertion reference:
+ class: File
+ location: https://data.qiime2.org/2024.2/common/sepp-refs-gg-13-8.qza
+ filetype: qza
+ outputs:
+ Rooted tree:
+ ftype: qza
+ asserts:
+ - has_size:
+ min: 2M
+ max: 3M
+ - has_archive_member:
+ path: "^[^/]*/data/tree.nwk"
+ n: 1
+ asserts:
+ - has_text_matching:
+ expression: "k__Bacteria"
+ - has_archive_member:
+ path: "^[^/]*/metadata.yaml"
+ n: 1
+ asserts:
+ - has_line:
+ line: "type: Phylogeny[Rooted]"
+ - has_line:
+ line: "format: NewickDirectoryFormat"
+
+ Rarefaction curve:
+ ftype: qzv
+ asserts:
+ - has_size:
+ min: 400k
+ max: 500k
+ - has_archive_member:
+ path: "^[^/]*/data/index.html"
+ n: 1
+ # data per measure
+ - has_archive_member:
+ path: "^[^/]*/data/.*\\.csv"
+ n: 3
+ # data for each measure and metadata variable (*7)
+ - has_archive_member:
+ path: "^[^/]*/data/.*\\.jsonp"
+ n: 21
+
+ Taxonomy classification:
+ ftype: qza
+ asserts:
+ - has_size:
+ min: 70k
+ max: 80k
+ - has_archive_member:
+ path: "^[^/]*/metadata.yaml"
+ n: 1
+ asserts:
+ - has_line:
+ line: "type: FeatureData[Taxonomy]"
+ - has_line:
+ line: "format: TSVTaxonomyDirectoryFormat"
+ - has_archive_member:
+ path: "^[^/]*/data/taxonomy.tsv"
+ n: 1
+ asserts:
+ - has_n_lines:
+ n: 288
+ Taxa barplot:
+ ftype: qzv
+ asserts:
+ - has_size:
+ min: 400k
+ max: 500k
+ - has_archive_member:
+ path: "^[^/]*/data/.*\\.csv"
+ n: 7
+ - has_archive_member:
+ path: "^[^/]*/data/.*\\.jsonp"
+ n: 7
+ Taxonomy classification table:
+ ftype: qza
+ asserts:
+ - has_size:
+ min: 1M
+ max: 2M
+ - has_archive_member:
+ path: "^[^/]*/data/metadata.tsv"
+ n: 1
+ asserts:
+ - has_n_lines:
+ n: 289
\ No newline at end of file
diff --git a/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis.ga b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis.ga
new file mode 100644
index 000000000..19b3f61c9
--- /dev/null
+++ b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis.ga
@@ -0,0 +1,1063 @@
+{
+ "a_galaxy_workflow": "true",
+ "annotation": "This workflow \n- Reconstruct phylogeny (insert fragments in a reference)\n- Alpha rarefaction analysis\n- Taxonomic analysis",
+ "comments": [],
+ "creator": [
+ {
+ "class": "Person",
+ "identifier": "0009-0008-1496-1677",
+ "name": "Debjyoti Ghosh"
+ },
+ {
+ "address": "Permoserstra\u00dfe 15, 04318 Leipzig",
+ "class": "Organization",
+ "name": "Helmholtz-Zentrum f\u00fcr Umweltforschung - UFZ"
+ }
+ ],
+ "format-version": "0.1",
+ "license": "MIT",
+ "name": "QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis",
+ "release": "0.1",
+ "steps": {
+ "0": {
+ "annotation": "Representative sequences, e.g. from DADA2",
+ "content_id": null,
+ "errors": null,
+ "id": 0,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Representative sequences, e.g. from DADA2",
+ "name": "Representative sequences"
+ }
+ ],
+ "label": "Representative sequences",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 1.1907255852393628,
+ "top": 32.84463293555338
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "ffb9d0c7-787e-4b70-9ed4-73624641b185",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "1": {
+ "annotation": "Feature table. e.g. from DADA2",
+ "content_id": null,
+ "errors": null,
+ "id": 1,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Feature table. e.g. from DADA2",
+ "name": "Feature table"
+ }
+ ],
+ "label": "Feature table",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 0,
+ "top": 141.5833282470703
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "388c0b1a-4e14-44e3-83d5-97a5052f5d26",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "2": {
+ "annotation": "Tab separated metadata file",
+ "content_id": null,
+ "errors": null,
+ "id": 2,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Tab separated metadata file",
+ "name": "Metadata"
+ }
+ ],
+ "label": "Metadata",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 3.298961099430351,
+ "top": 256.6628878437186
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"tsv\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "64e30001-38ae-4d19-a93c-6d0572d10252",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "3": {
+ "annotation": "Minimum depth used for the rarefaction analysis (minimum value : 1)",
+ "content_id": null,
+ "errors": null,
+ "id": 3,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Minimum depth used for the rarefaction analysis (minimum value : 1)",
+ "name": "Minimum depth"
+ }
+ ],
+ "label": "Minimum depth",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 5.446155936666033,
+ "top": 345.49918723766496
+ },
+ "tool_id": null,
+ "tool_state": "{\"parameter_type\": \"integer\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "93c5a1ed-7222-4e61-bfde-7c2ee74bb1fe",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "4": {
+ "annotation": "Maximum depth used for the rarefaction analysis (minimum value : 1)",
+ "content_id": null,
+ "errors": null,
+ "id": 4,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Maximum depth used for the rarefaction analysis (minimum value : 1)",
+ "name": "Maximum depth"
+ }
+ ],
+ "label": "Maximum depth",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 6.523874261050689,
+ "top": 444.34720870793564
+ },
+ "tool_id": null,
+ "tool_state": "{\"parameter_type\": \"integer\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "37b64f9f-e47a-4f70-aec2-ef2f3e005c4c",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "5": {
+ "annotation": "Reference data for the SEPP fragmentation insertion phylogenetic tree generation",
+ "content_id": null,
+ "errors": null,
+ "id": 5,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Reference data for the SEPP fragmentation insertion phylogenetic tree generation",
+ "name": "SEPP fragment insertion reference"
+ }
+ ],
+ "label": "SEPP fragment insertion reference",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 14.95001220703125,
+ "top": 634.2999877929688
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "3cb0a84c-dc8c-4325-929b-2d3915e7738a",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "6": {
+ "annotation": "Taxonomic classifier (e.g. Greengenes or SILVA)",
+ "content_id": null,
+ "errors": null,
+ "id": 6,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Taxonomic classifier (e.g. Greengenes or SILVA)",
+ "name": "Taxonomic classifier"
+ }
+ ],
+ "label": "Taxonomic classifier",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 13.29724891100554,
+ "top": 751.0166625976562
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "8c477a8c-f360-4a8a-95ef-c4c9b8168ae8",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "7": {
+ "annotation": "Phylogenetic tree for diversity analysis",
+ "id": 7,
+ "input_connections": {
+ "DADA2 representative sequences": {
+ "id": 0,
+ "input_subworkflow_step_id": 0,
+ "output_name": "output"
+ },
+ "SEPP fragment insertion source file": {
+ "id": 5,
+ "input_subworkflow_step_id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Phylogenetic tree for diversity analysis",
+ "name": "QIIME2 III: Phylogenetic tree for diversity analysis",
+ "outputs": [],
+ "position": {
+ "left": 457.7998825174995,
+ "top": 0
+ },
+ "subworkflow": {
+ "a_galaxy_workflow": "true",
+ "annotation": "",
+ "comments": [],
+ "creator": [
+ {
+ "class": "Person",
+ "identifier": "0009-0008-1496-1677",
+ "name": "Debjyoti Ghosh"
+ },
+ {
+ "address": "Permoserstra\u00dfe 15, 04318 Leipzig",
+ "class": "Organization",
+ "name": "Helmholtz-Zentrum f\u00fcr Umweltforschung - UFZ"
+ }
+ ],
+ "format-version": "0.1",
+ "license": "MIT",
+ "name": "QIIME2 III: Phylogenetic tree for diversity analysis",
+ "steps": {
+ "0": {
+ "annotation": "DADA2 representative sequences",
+ "content_id": null,
+ "errors": null,
+ "id": 0,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "DADA2 representative sequences",
+ "name": "DADA2 representative sequences"
+ }
+ ],
+ "label": "DADA2 representative sequences",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 0,
+ "top": 19.497570176200952
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "71e6440a-8aa6-4899-bd11-901dffae36a5",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "1": {
+ "annotation": "Reference data for the SEPP fragmentation insertion phylogenetic tree generation",
+ "content_id": null,
+ "errors": null,
+ "id": 1,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Reference data for the SEPP fragmentation insertion phylogenetic tree generation",
+ "name": "SEPP fragment insertion source file"
+ }
+ ],
+ "label": "SEPP fragment insertion source file",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 0.34857177734375,
+ "top": 144.6569787455369
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "2bf4a3e7-51d9-4323-ab9a-f6a85c3b0cd7",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "2": {
+ "annotation": "qiime2 fragment-insertion sepp\nInsert fragment sequences using SEPP into reference phylogenies.",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__fragment_insertion__sepp/qiime2__fragment_insertion__sepp/2023.5.0+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 2,
+ "input_connections": {
+ "reference_database": {
+ "id": 1,
+ "output_name": "output"
+ },
+ "representative_sequences": {
+ "id": 0,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Phylogenetic tree generation",
+ "name": "qiime2 fragment-insertion sepp",
+ "outputs": [
+ {
+ "name": "tree",
+ "type": "qza"
+ },
+ {
+ "name": "placements",
+ "type": "qza"
+ }
+ ],
+ "position": {
+ "left": 310.42930324654003,
+ "top": 0
+ },
+ "post_job_actions": {
+ "HideDatasetActionplacements": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "placements"
+ },
+ "RenameDatasetActionplacements": {
+ "action_arguments": {
+ "newname": "rooted_tree_placements"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "placements"
+ },
+ "RenameDatasetActiontree": {
+ "action_arguments": {
+ "newname": "rooted_tree"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "tree"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__fragment_insertion__sepp/qiime2__fragment_insertion__sepp/2023.5.0+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "2fa85eae206e",
+ "name": "qiime2__fragment_insertion__sepp",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"alignment_subset_size\": \"1000\", \"placement_subset_size\": \"5000\", \"threads\": \"1\", \"debug\": false}, \"reference_database\": {\"__class__\": \"ConnectedValue\"}, \"representative_sequences\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.0+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "f6aa969f-1bdf-4d74-8b0a-af93a0640040",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Rooted tree",
+ "output_name": "tree",
+ "uuid": "e572bf3b-64aa-4bd5-a629-f53ba6a383be"
+ }
+ ]
+ }
+ },
+ "tags": "",
+ "uuid": "4a96a5b2-f8cc-41a3-9f16-a84e47e05afe"
+ },
+ "tool_id": null,
+ "type": "subworkflow",
+ "uuid": "ccd1436d-4d55-401f-b794-8396eef8288f",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Rooted tree",
+ "output_name": "Rooted tree",
+ "uuid": "86b75240-ab72-47df-a1c1-a70911d19d66"
+ }
+ ]
+ },
+ "8": {
+ "annotation": "Taxonomic analysis",
+ "id": 8,
+ "input_connections": {
+ "DADA2 feature table": {
+ "id": 1,
+ "input_subworkflow_step_id": 3,
+ "output_name": "output"
+ },
+ "DADA2 representative sequences": {
+ "id": 0,
+ "input_subworkflow_step_id": 1,
+ "output_name": "output"
+ },
+ "Metadata": {
+ "id": 2,
+ "input_subworkflow_step_id": 0,
+ "output_name": "output"
+ },
+ "Taxonomic classifier": {
+ "id": 6,
+ "input_subworkflow_step_id": 2,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Taxonomic analysis",
+ "name": "QIIME2 V: Taxonomic analysis",
+ "outputs": [],
+ "position": {
+ "left": 484.1197712977931,
+ "top": 565.4134141655171
+ },
+ "subworkflow": {
+ "a_galaxy_workflow": "true",
+ "annotation": "",
+ "comments": [],
+ "creator": [
+ {
+ "class": "Person",
+ "identifier": "0009-0008-1496-1677",
+ "name": "Debjyoti Ghosh"
+ },
+ {
+ "address": "Permoserstra\u00dfe 15, 04318 Leipzig",
+ "class": "Organization",
+ "name": "Helmholtz-Zentrum f\u00fcr Umweltforschung - UFZ"
+ }
+ ],
+ "format-version": "0.1",
+ "license": "MIT",
+ "name": "QIIME2 V: Taxonomic analysis",
+ "steps": {
+ "0": {
+ "annotation": "Tab separated metadata file",
+ "content_id": null,
+ "errors": null,
+ "id": 0,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Tab separated metadata file",
+ "name": "Metadata"
+ }
+ ],
+ "label": "Metadata",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 0.791015625,
+ "top": 2.6916668368741092
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "c2deedc3-713c-4030-9fb8-5734c016ad5c",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "1": {
+ "annotation": "Demultiplexed sequences in qza format",
+ "content_id": null,
+ "errors": null,
+ "id": 1,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Demultiplexed sequences in qza format",
+ "name": "DADA2 representative sequences"
+ }
+ ],
+ "label": "DADA2 representative sequences",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 1.8453224170332305,
+ "top": 111.47987345989156
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "e250ddc1-f567-40ca-9f2b-e07bbf84cdec",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "2": {
+ "annotation": "Taxonomic classifier (e.g. Greengenes or SILVA)",
+ "content_id": null,
+ "errors": null,
+ "id": 2,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Taxonomic classifier (e.g. Greengenes or SILVA)",
+ "name": "Taxonomic classifier"
+ }
+ ],
+ "label": "Taxonomic classifier",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 0.451446533203125,
+ "top": 241.0041668368741
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "ac0cdf1d-2a29-481c-aaa3-21f1b8f9b97d",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "3": {
+ "annotation": "DADA2 feature table",
+ "content_id": null,
+ "errors": null,
+ "id": 3,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "DADA2 feature table",
+ "name": "DADA2 feature table"
+ }
+ ],
+ "label": "DADA2 feature table",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 0,
+ "top": 365.0612957431241
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "81495001-5b55-4676-8d7f-cb0659d6acc3",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "4": {
+ "annotation": "qiime2 feature-classifier classify-sklearn\nPre-fitted sklearn-based taxonomy classifier",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__feature_classifier__classify_sklearn/qiime2__feature_classifier__classify_sklearn/2023.5.0+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 4,
+ "input_connections": {
+ "classifier": {
+ "id": 2,
+ "output_name": "output"
+ },
+ "reads": {
+ "id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Taxonomy classification",
+ "name": "qiime2 feature-classifier classify-sklearn",
+ "outputs": [
+ {
+ "name": "classification",
+ "type": "qza"
+ }
+ ],
+ "position": {
+ "left": 334.0095438830636,
+ "top": 1.9720584701849528
+ },
+ "post_job_actions": {
+ "RenameDatasetActionclassification": {
+ "action_arguments": {
+ "newname": "taxonomy_classification"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "classification"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__feature_classifier__classify_sklearn/qiime2__feature_classifier__classify_sklearn/2023.5.0+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "8aa82af30760",
+ "name": "qiime2__feature_classifier__classify_sklearn",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"__q2galaxy__GUI__conditional__reads_per_batch__\": {\"__q2galaxy__GUI__select__\": \"auto\", \"__current_case__\": 0, \"reads_per_batch\": \"auto\"}, \"n_jobs\": \"1\", \"pre_dispatch\": \"2*n_jobs\", \"__q2galaxy__GUI__conditional__confidence__\": {\"__q2galaxy__GUI__select__\": \"__q2galaxy__::control::Float X Range(0__comma__ 1__comma__ inclusive_end=True)\", \"__current_case__\": 1, \"confidence\": \"0.7\"}, \"read_orientation\": \"auto\"}, \"classifier\": {\"__class__\": \"ConnectedValue\"}, \"reads\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.0+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "cf9e003e-bcd4-4819-88cf-98d3bc8bf531",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Taxonomy classification",
+ "output_name": "classification",
+ "uuid": "c2f6d710-2fec-45de-a31d-bfa001afb26c"
+ }
+ ]
+ },
+ "5": {
+ "annotation": "qiime2 taxa barplot\nVisualize taxonomy with an interactive bar plot",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__taxa__barplot/qiime2__taxa__barplot/2023.5.0+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 5,
+ "input_connections": {
+ "__q2galaxy__GUI__section__extra_opts__|metadata_0|__q2galaxy__GUI__conditional__metadata__|source": {
+ "id": 0,
+ "output_name": "output"
+ },
+ "__q2galaxy__GUI__section__extra_opts__|taxonomy": {
+ "id": 4,
+ "output_name": "classification"
+ },
+ "table": {
+ "id": 3,
+ "output_name": "output"
+ }
+ },
+ "inputs": [
+ {
+ "description": "runtime parameter for tool qiime2 taxa barplot",
+ "name": "__q2galaxy__GUI__section__extra_opts__"
+ }
+ ],
+ "label": "Taxonomy barplot",
+ "name": "qiime2 taxa barplot",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 645.4988052205106,
+ "top": 0
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "taxa_barplot"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__taxa__barplot/qiime2__taxa__barplot/2023.5.0+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "124673b2e9e7",
+ "name": "qiime2__taxa__barplot",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"taxonomy\": {\"__class__\": \"ConnectedValue\"}, \"metadata\": [{\"__index__\": 0, \"__q2galaxy__GUI__conditional__metadata__\": {\"type\": \"tsv\", \"__current_case__\": 0, \"source\": {\"__class__\": \"ConnectedValue\"}}}], \"__q2galaxy__GUI__conditional__level_delimiter__\": {\"__q2galaxy__GUI__select__\": \"__q2galaxy__::control::default\", \"__current_case__\": 0, \"level_delimiter\": \"__q2galaxy__::literal::None\"}}, \"table\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.0+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "a2146130-d5a3-4f0d-814f-61677f57709b",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Taxa barplot",
+ "output_name": "visualization",
+ "uuid": "cef83374-d99f-4a8c-98ec-90afd3a37da3"
+ }
+ ]
+ },
+ "6": {
+ "annotation": "qiime2 metadata tabulate\nInteractively explore Metadata in an HTML table",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__metadata__tabulate/qiime2__metadata__tabulate/2023.5.0+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 6,
+ "input_connections": {
+ "input_0|__q2galaxy__GUI__conditional__input__|source": {
+ "id": 4,
+ "output_name": "classification"
+ }
+ },
+ "inputs": [],
+ "label": "Tabulate taxonomy classification",
+ "name": "qiime2 metadata tabulate",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 646.2365246851235,
+ "top": 304.22497686132425
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "taxonomy_classification_visualisation"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__metadata__tabulate/qiime2__metadata__tabulate/2023.5.0+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "d6e1b976c373",
+ "name": "qiime2__metadata__tabulate",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"page_size\": \"100\"}, \"input\": [{\"__index__\": 0, \"__q2galaxy__GUI__conditional__input__\": {\"type\": \"qza\", \"__current_case__\": 1, \"source\": {\"__class__\": \"ConnectedValue\"}}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.0+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "380548c3-b9b6-4ebd-ae68-e3fbb891f7e5",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Taxonomy classification table",
+ "output_name": "visualization",
+ "uuid": "9b1b4f66-d7a7-42cd-ac81-00c417300f47"
+ }
+ ]
+ }
+ },
+ "tags": "",
+ "uuid": "41bae731-2f27-4e57-b94d-683e0ab94b43"
+ },
+ "tool_id": null,
+ "type": "subworkflow",
+ "uuid": "b145de22-67f9-4577-99d9-cffc76d210ce",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Taxonomy classification",
+ "output_name": "Taxonomy classification",
+ "uuid": "622c6287-2cea-4b85-82cc-26a2d3abfb3d"
+ },
+ {
+ "label": "Taxa barplot",
+ "output_name": "Taxa barplot",
+ "uuid": "1857691f-3d38-45be-a6e5-4dca9a0d836a"
+ },
+ {
+ "label": "Taxonomy classification table",
+ "output_name": "Taxonomy classification table",
+ "uuid": "8a273aca-d2bc-4038-a13c-63cea1666839"
+ }
+ ]
+ },
+ "9": {
+ "annotation": "Rarefaction",
+ "id": 9,
+ "input_connections": {
+ "DADA2 feature table": {
+ "id": 1,
+ "input_subworkflow_step_id": 1,
+ "output_name": "output"
+ },
+ "Maximum depth": {
+ "id": 4,
+ "input_subworkflow_step_id": 4,
+ "output_name": "output"
+ },
+ "Metadata": {
+ "id": 2,
+ "input_subworkflow_step_id": 0,
+ "output_name": "output"
+ },
+ "Minimum depth": {
+ "id": 3,
+ "input_subworkflow_step_id": 3,
+ "output_name": "output"
+ },
+ "Rooted tree": {
+ "id": 7,
+ "input_subworkflow_step_id": 2,
+ "output_name": "Rooted tree"
+ }
+ },
+ "inputs": [],
+ "label": "Rarefaction",
+ "name": "QIIME2 IV: Rarefaction",
+ "outputs": [],
+ "position": {
+ "left": 766.4972916356149,
+ "top": 298.3500061035156
+ },
+ "subworkflow": {
+ "a_galaxy_workflow": "true",
+ "annotation": "",
+ "comments": [],
+ "creator": [
+ {
+ "class": "Person",
+ "identifier": "0009-0008-1496-1677",
+ "name": "Debjyoti Ghosh"
+ },
+ {
+ "address": "Permoserstra\u00dfe 15, 04318 Leipzig",
+ "class": "Organization",
+ "name": "Helmholtz-Zentrum f\u00fcr Umweltforschung - UFZ"
+ }
+ ],
+ "format-version": "0.1",
+ "license": "MIT",
+ "name": "QIIME2 IV: Rarefaction",
+ "steps": {
+ "0": {
+ "annotation": "Tab separated metadata file",
+ "content_id": null,
+ "errors": null,
+ "id": 0,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Tab separated metadata file",
+ "name": "Metadata"
+ }
+ ],
+ "label": "Metadata",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 0,
+ "top": 0
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"tabular\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "8dde0c69-40f1-415a-a866-5d1115e80cdf",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "1": {
+ "annotation": "DADA2 feature table",
+ "content_id": null,
+ "errors": null,
+ "id": 1,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "DADA2 feature table",
+ "name": "DADA2 feature table"
+ }
+ ],
+ "label": "DADA2 feature table",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 2.3167686199511115,
+ "top": 140.50124094027063
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "92e667de-c04f-420c-9747-ffedf77041fa",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "2": {
+ "annotation": "Import rooted_tree output from phylogenetic tree generation step",
+ "content_id": null,
+ "errors": null,
+ "id": 2,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Import rooted_tree output from phylogenetic tree generation step",
+ "name": "Rooted tree"
+ }
+ ],
+ "label": "Rooted tree",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 2.0428123211229865,
+ "top": 260.4983035867503
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "86b5c5cc-362f-4dc3-990d-17843406df1a",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "3": {
+ "annotation": "The depth value is based on the feature sampling depth from DADA2 table output (minimum value : 1)",
+ "content_id": null,
+ "errors": null,
+ "id": 3,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "The depth value is based on the feature sampling depth from DADA2 table output (minimum value : 1)",
+ "name": "Minimum depth"
+ }
+ ],
+ "label": "Minimum depth",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 1.766632080078125,
+ "top": 353.64630126953125
+ },
+ "tool_id": null,
+ "tool_state": "{\"parameter_type\": \"integer\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "3c3e503d-c3ff-4257-8ce8-7acb2cb4ab3c",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "5f3015ba-bfed-48bc-a22e-03eb8f2576e2"
+ }
+ ]
+ },
+ "4": {
+ "annotation": "The depth value is based on the feature sampling depth from DADA2 table output",
+ "content_id": null,
+ "errors": null,
+ "id": 4,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "The depth value is based on the feature sampling depth from DADA2 table output",
+ "name": "Maximum depth"
+ }
+ ],
+ "label": "Maximum depth",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 0.92767333984375,
+ "top": 472.1087646484375
+ },
+ "tool_id": null,
+ "tool_state": "{\"parameter_type\": \"integer\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "2af02538-19c9-4ffc-924e-5108987064a1",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": null,
+ "output_name": "output",
+ "uuid": "b4075e2a-6d99-4102-a396-05ef3f4b3cca"
+ }
+ ]
+ },
+ "5": {
+ "annotation": "qiime2 diversity alpha-rarefaction\nAlpha rarefaction curves\n(Galaxy Version 2023.5.1+q2galaxy.2023.5.0.2)",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__alpha_rarefaction/qiime2__diversity__alpha_rarefaction/2023.5.1+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 5,
+ "input_connections": {
+ "__q2galaxy__GUI__section__extra_opts__|metadata_0|__q2galaxy__GUI__conditional__metadata__|source": {
+ "id": 0,
+ "output_name": "output"
+ },
+ "__q2galaxy__GUI__section__extra_opts__|min_depth": {
+ "id": 3,
+ "output_name": "output"
+ },
+ "__q2galaxy__GUI__section__extra_opts__|phylogeny": {
+ "id": 2,
+ "output_name": "output"
+ },
+ "max_depth": {
+ "id": 4,
+ "output_name": "output"
+ },
+ "table": {
+ "id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [
+ {
+ "description": "runtime parameter for tool qiime2 diversity alpha-rarefaction",
+ "name": "__q2galaxy__GUI__section__extra_opts__"
+ },
+ {
+ "description": "runtime parameter for tool qiime2 diversity alpha-rarefaction",
+ "name": "__q2galaxy__GUI__section__extra_opts__"
+ }
+ ],
+ "label": "Alpha rarefaction",
+ "name": "qiime2 diversity alpha-rarefaction",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 348.86456298828125,
+ "top": 75.385009765625
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "alpha_rarefaction"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__alpha_rarefaction/qiime2__diversity__alpha_rarefaction/2023.5.1+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "97cb20f77d50",
+ "name": "qiime2__diversity__alpha_rarefaction",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"phylogeny\": {\"__class__\": \"ConnectedValue\"}, \"metrics\": [], \"metadata\": [{\"__index__\": 0, \"__q2galaxy__GUI__conditional__metadata__\": {\"type\": \"tsv\", \"__current_case__\": 0, \"source\": {\"__class__\": \"ConnectedValue\"}}}], \"min_depth\": {\"__class__\": \"ConnectedValue\"}, \"steps\": \"10\", \"iterations\": \"10\"}, \"max_depth\": {\"__class__\": \"ConnectedValue\"}, \"table\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.1+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "489f6ea1-d13a-48ae-b71d-40c413f3b45e",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Rarefaction curve",
+ "output_name": "visualization",
+ "uuid": "5675c59e-7e5e-4b0f-a7e7-263a0fa42f1d"
+ }
+ ]
+ }
+ },
+ "tags": "",
+ "uuid": "3c96b4fd-c67a-4c79-9e78-6f77e72b4bdf"
+ },
+ "tool_id": null,
+ "type": "subworkflow",
+ "uuid": "ba53440b-8543-44d1-9f96-16845342c339",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Rarefaction curve",
+ "output_name": "Rarefaction curve",
+ "uuid": "12394a5b-15fc-44f2-80cd-2b38de92517a"
+ }
+ ]
+ }
+ },
+ "tags": [],
+ "uuid": "3163175d-7673-42d9-8aae-505afbd74946",
+ "version": 30
+}
diff --git a/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-VI-diversity-metrics-and-estimations-tests.yml b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-VI-diversity-metrics-and-estimations-tests.yml
new file mode 100644
index 000000000..5ef46fed7
--- /dev/null
+++ b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-VI-diversity-metrics-and-estimations-tests.yml
@@ -0,0 +1,140 @@
+- doc: Test outline for QIIME2-VI:-Diversity-metrics-and-estimations
+ job:
+ Metadata:
+ class: File
+ location: https://data.qiime2.org/2024.2/tutorials/pd-mice/sample_metadata.tsv
+ filetype: qiime2.tabular
+ Feature table:
+ class: File
+ location: https://docs.qiime2.org/2024.2/data/tutorials/pd-mice/dada2_table.qza
+ filetype: qza
+ Rooted tree:
+ class: File
+ location: https://docs.qiime2.org/2024.2/data/tutorials/pd-mice/tree.qza
+ filetype: qza
+ Sampling depth: '2000'
+ Target metadata parameter (for beta diversity): cage_id
+ outputs:
+ Alpha diversity - Pielou's evenness:
+ ftype: qzv
+ asserts:
+ - has_size:
+ min: 300k
+ max: 400k
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.csv"
+ n: 6
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.jsonp"
+ n: 6
+ Alpha diversity - Shannon's diversity index:
+ ftype: qzv
+ asserts:
+ - has_size:
+ min: 300k
+ max: 400k
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.csv"
+ n: 6
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.jsonp"
+ n: 6
+ Alpha diversity - Observed features:
+ ftype: qzv
+ asserts:
+ - has_size:
+ min: 300k
+ max: 400k
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.csv"
+ n: 6
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.jsonp"
+ n: 6
+ Beta diversity - Bray-Curtis distance metrics:
+ ftype: qzv
+ asserts:
+ - has_size:
+ min: 400k
+ max: 500k
+ - has_archive_member:
+ path: "^[^/]*/data/raw_data\\.tsv"
+ n: 1
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.png"
+ n: 6
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.pdf"
+ n: 6
+ Beta diversity - Jaccard distance metrics:
+ ftype: qzv
+ asserts:
+ - has_size:
+ min: 400k
+ max: 500k
+ - has_archive_member:
+ path: "^[^/]*/data/raw_data\\.tsv"
+ n: 1
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.png"
+ n: 6
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.pdf"
+ n: 6
+ Beta diversity - weighted UniFrac distance metrics:
+ ftype: qzv
+ asserts:
+ - has_size:
+ min: 400k
+ max: 500k
+ - has_archive_member:
+ path: "^[^/]*/data/raw_data\\.tsv"
+ n: 1
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.png"
+ n: 6
+ - has_archive_member:
+ path: "^[^/]*/data/[^/]*\\.pdf"
+ n: 6
+ Emperor plot collection:
+ element_tests:
+ 'unweighted_unifrac':
+ ftype: qzv
+ 'weighted_unifrac':
+ ftype: qzv
+ 'jaccard':
+ ftype: qzv
+ 'bray_curtis':
+ ftype: qzv
+ Distance matrix collection:
+ element_tests:
+ 'unweighted_unifrac':
+ ftype: qzv
+ 'weighted_unifrac':
+ ftype: qzv
+ 'jaccard':
+ ftype: qzv
+ 'bray_curtis':
+ ftype: qzv
+ PCoA collection:
+ element_tests:
+ 'unweighted_unifrac':
+ ftype: qzv
+ 'weighted_unifrac':
+ ftype: qzv
+ 'jaccard':
+ ftype: qzv
+ 'bray_curtis':
+ ftype: qzv
+ Richness and evenness collection:
+ element_tests:
+ 'rarefied_table':
+ ftype: qzv
+ 'faith_pd_vector':
+ ftype: qzv
+ 'observed_features_vector':
+ ftype: qzv
+ 'shannon_vector':
+ ftype: qzv
+ 'eveness_vector':
+ ftype: qzv
\ No newline at end of file
diff --git a/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-VI-diversity-metrics-and-estimations.ga b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-VI-diversity-metrics-and-estimations.ga
new file mode 100644
index 000000000..bac0948ff
--- /dev/null
+++ b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/QIIME2-VI-diversity-metrics-and-estimations.ga
@@ -0,0 +1,1132 @@
+{
+ "a_galaxy_workflow": "true",
+ "annotation": "The first step in hypothesis testing in microbial ecology is typically to look at within- (alpha) and between-sample (beta) diversity. We can calculate diversity metrics, apply appropriate statistical tests, and visualize the data using the q2-diversity plugin.",
+ "comments": [
+ {
+ "color": "none",
+ "data": {
+ "size": 1,
+ "text": "From DADA2 table output or rarefaction"
+ },
+ "id": 1,
+ "position": [
+ 0,
+ 221.8
+ ],
+ "size": [
+ 152,
+ 76
+ ],
+ "type": "text"
+ },
+ {
+ "color": "none",
+ "data": {
+ "text": "Input files"
+ },
+ "id": 0,
+ "position": [
+ 136.6,
+ 3.8000000000000114
+ ],
+ "size": [
+ 101,
+ 40
+ ],
+ "type": "markdown"
+ },
+ {
+ "color": "none",
+ "data": {
+ "text": "Alpha diversity"
+ },
+ "id": 3,
+ "position": [
+ 844.9,
+ 0.7000000000000028
+ ],
+ "size": [
+ 134,
+ 40
+ ],
+ "type": "markdown"
+ },
+ {
+ "color": "none",
+ "data": {
+ "text": "Diversity metrics"
+ },
+ "id": 2,
+ "position": [
+ 513,
+ 1.8000000000000114
+ ],
+ "size": [
+ 139,
+ 39
+ ],
+ "type": "markdown"
+ },
+ {
+ "color": "none",
+ "data": {
+ "text": "Beta diversity"
+ },
+ "id": 4,
+ "position": [
+ 1184.8999999999999,
+ 0
+ ],
+ "size": [
+ 120,
+ 39
+ ],
+ "type": "markdown"
+ },
+ {
+ "child_steps": [
+ 12,
+ 14,
+ 15,
+ 16
+ ],
+ "color": "none",
+ "data": {
+ "title": "Collections"
+ },
+ "id": 5,
+ "position": [
+ 794.4,
+ 1062.3
+ ],
+ "size": [
+ 1263,
+ 352
+ ],
+ "type": "frame"
+ }
+ ],
+ "creator": [
+ {
+ "class": "Person",
+ "identifier": "0009-0008-1496-1677",
+ "name": "Debjyoti Ghosh"
+ },
+ {
+ "address": "Permoserstra\u00dfe 15, 04318 Leipzig",
+ "class": "Organization",
+ "name": "Helmholtz-Zentrum f\u00fcr Umweltforschung - UFZ"
+ }
+ ],
+ "format-version": "0.1",
+ "license": "MIT",
+ "name": "QIIME2 VI: Diversity metrics and estimations",
+ "release": "0.1",
+ "steps": {
+ "0": {
+ "annotation": "This value is based on the DADA2 table features.\nNote: the choice of the value is prioritising either the inclusion of all the samples or a higher feature retention.",
+ "content_id": null,
+ "errors": null,
+ "id": 0,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "This value is based on the DADA2 table features.\nNote: the choice of the value is prioritising either the inclusion of all the samples or a higher feature retention.",
+ "name": "Sampling depth"
+ }
+ ],
+ "label": "Sampling depth",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 134.6,
+ "top": 224.1206788736988
+ },
+ "tool_id": null,
+ "tool_state": "{\"parameter_type\": \"integer\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "a926d4ba-b238-4499-a12b-a95840970cef",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "1": {
+ "annotation": "The tab separated file for the metadata",
+ "content_id": null,
+ "errors": null,
+ "id": 1,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "The tab separated file for the metadata",
+ "name": "Metadata"
+ }
+ ],
+ "label": "Metadata",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 125.04715373257632,
+ "top": 312.2417148460719
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qiime2.tabular\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "8546caa2-9723-4c36-b693-988d43717ccf",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "2": {
+ "annotation": "For instance the dada2_table from DADA2",
+ "content_id": null,
+ "errors": null,
+ "id": 2,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "For instance the dada2_table from DADA2",
+ "name": "Feature table"
+ }
+ ],
+ "label": "Feature table",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 131.65948794697385,
+ "top": 519.9723458836958
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "f8b970d0-8396-4793-8131-36cc24fcc630",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "3": {
+ "annotation": "Rooted phylogenetic tree",
+ "content_id": null,
+ "errors": null,
+ "id": 3,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Rooted phylogenetic tree",
+ "name": "Rooted tree"
+ }
+ ],
+ "label": "Rooted tree",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 131.88431251326813,
+ "top": 637.5877672262973
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"format\": [\"qza\"], \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "0bbab7fb-adb4-45b1-926e-3183f6708658",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "4": {
+ "annotation": "Type in the name of the parameter which would be used for beta diversity estimation",
+ "content_id": null,
+ "errors": null,
+ "id": 4,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Type in the name of the parameter which would be used for beta diversity estimation",
+ "name": "Target metadata parameter (for beta diversity)"
+ }
+ ],
+ "label": "Target metadata parameter (for beta diversity)",
+ "name": "Input parameter",
+ "outputs": [],
+ "position": {
+ "left": 132.27305627796053,
+ "top": 773.5167861361558
+ },
+ "tool_id": null,
+ "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}",
+ "tool_version": null,
+ "type": "parameter_input",
+ "uuid": "63ee0d89-71cd-4488-8c14-776f44470aba",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "5": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2_core__tools__import/qiime2_core__tools__import/2023.5.0+dist.h193f7cc9.3",
+ "errors": null,
+ "id": 5,
+ "input_connections": {
+ "import_root|__q2galaxy__GUI__cond__format__|import|data": {
+ "id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": null,
+ "name": "qiime2 tools import",
+ "outputs": [
+ {
+ "name": "imported_data",
+ "type": "qza"
+ }
+ ],
+ "position": {
+ "left": 183.95541284754188,
+ "top": 384.72561308872656
+ },
+ "post_job_actions": {
+ "HideDatasetActionimported_data": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "imported_data"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2_core__tools__import/qiime2_core__tools__import/2023.5.0+dist.h193f7cc9.3",
+ "tool_shed_repository": {
+ "changeset_revision": "10447a4b0cc3",
+ "name": "qiime2_core__tools__import",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"import_root\": {\"type\": \"ImmutableMetadata\", \"__current_case__\": 29, \"__q2galaxy__GUI__cond__format__\": {\"format\": \"ImmutableMetadataFormat\", \"__current_case__\": 0, \"import\": {\"name\": \"__q2galaxy__::literal::None\", \"data\": {\"__class__\": \"RuntimeValue\"}}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.0+dist.h193f7cc9.3",
+ "type": "tool",
+ "uuid": "be1fae33-1b8d-4756-854f-a0587934da09",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "6": {
+ "annotation": "QIIME 2\u2019s diversity analyses are available through the q2-diversity plugin, which supports computing alpha and beta diversity metrics, applying related statistical tests, and generating interactive visualizations. We\u2019ll first apply the core-metrics-phylogenetic method, which rarefies a FeatureTable[Frequency] to a user-specified depth, computes several alpha and beta diversity metrics, and generates principle coordinates analysis (PCoA) plots using Emperor for each of the beta diversity metrics.",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__core_metrics_phylogenetic/qiime2__diversity__core_metrics_phylogenetic/2023.5.1+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 6,
+ "input_connections": {
+ "metadata_0|__q2galaxy__GUI__conditional__metadata__|source": {
+ "id": 1,
+ "output_name": "output"
+ },
+ "phylogeny": {
+ "id": 3,
+ "output_name": "output"
+ },
+ "sampling_depth": {
+ "id": 0,
+ "output_name": "output"
+ },
+ "table": {
+ "id": 2,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Diversity metrics",
+ "name": "qiime2 diversity core-metrics-phylogenetic",
+ "outputs": [
+ {
+ "name": "rarefied_table",
+ "type": "qza"
+ },
+ {
+ "name": "faith_pd_vector",
+ "type": "qza"
+ },
+ {
+ "name": "observed_features_vector",
+ "type": "qza"
+ },
+ {
+ "name": "shannon_vector",
+ "type": "qza"
+ },
+ {
+ "name": "evenness_vector",
+ "type": "qza"
+ },
+ {
+ "name": "unweighted_unifrac_distance_matrix",
+ "type": "qza"
+ },
+ {
+ "name": "weighted_unifrac_distance_matrix",
+ "type": "qza"
+ },
+ {
+ "name": "jaccard_distance_matrix",
+ "type": "qza"
+ },
+ {
+ "name": "bray_curtis_distance_matrix",
+ "type": "qza"
+ },
+ {
+ "name": "unweighted_unifrac_pcoa_results",
+ "type": "qza"
+ },
+ {
+ "name": "weighted_unifrac_pcoa_results",
+ "type": "qza"
+ },
+ {
+ "name": "jaccard_pcoa_results",
+ "type": "qza"
+ },
+ {
+ "name": "bray_curtis_pcoa_results",
+ "type": "qza"
+ },
+ {
+ "name": "unweighted_unifrac_emperor",
+ "type": "qzv"
+ },
+ {
+ "name": "weighted_unifrac_emperor",
+ "type": "qzv"
+ },
+ {
+ "name": "jaccard_emperor",
+ "type": "qzv"
+ },
+ {
+ "name": "bray_curtis_emperor",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 512.5765871918118,
+ "top": 81.4
+ },
+ "post_job_actions": {
+ "HideDatasetActionbray_curtis_distance_matrix": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "bray_curtis_distance_matrix"
+ },
+ "HideDatasetActionbray_curtis_emperor": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "bray_curtis_emperor"
+ },
+ "HideDatasetActionbray_curtis_pcoa_results": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "bray_curtis_pcoa_results"
+ },
+ "HideDatasetActionevenness_vector": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "evenness_vector"
+ },
+ "HideDatasetActionfaith_pd_vector": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "faith_pd_vector"
+ },
+ "HideDatasetActionjaccard_distance_matrix": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "jaccard_distance_matrix"
+ },
+ "HideDatasetActionjaccard_emperor": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "jaccard_emperor"
+ },
+ "HideDatasetActionjaccard_pcoa_results": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "jaccard_pcoa_results"
+ },
+ "HideDatasetActionobserved_features_vector": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "observed_features_vector"
+ },
+ "HideDatasetActionrarefied_table": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "rarefied_table"
+ },
+ "HideDatasetActionshannon_vector": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "shannon_vector"
+ },
+ "HideDatasetActionunweighted_unifrac_distance_matrix": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "unweighted_unifrac_distance_matrix"
+ },
+ "HideDatasetActionunweighted_unifrac_emperor": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "unweighted_unifrac_emperor"
+ },
+ "HideDatasetActionunweighted_unifrac_pcoa_results": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "unweighted_unifrac_pcoa_results"
+ },
+ "HideDatasetActionweighted_unifrac_distance_matrix": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "weighted_unifrac_distance_matrix"
+ },
+ "HideDatasetActionweighted_unifrac_emperor": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "weighted_unifrac_emperor"
+ },
+ "HideDatasetActionweighted_unifrac_pcoa_results": {
+ "action_arguments": {},
+ "action_type": "HideDatasetAction",
+ "output_name": "weighted_unifrac_pcoa_results"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__core_metrics_phylogenetic/qiime2__diversity__core_metrics_phylogenetic/2023.5.1+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "9d29f6a334e5",
+ "name": "qiime2__diversity__core_metrics_phylogenetic",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"with_replacement\": false, \"__q2galaxy__GUI__conditional__n_jobs_or_threads__\": {\"__q2galaxy__GUI__select__\": \"__q2galaxy__::control::Int X Range(1__comma__ None)\", \"__current_case__\": 1, \"n_jobs_or_threads\": \"1\"}}, \"metadata\": [{\"__index__\": 0, \"__q2galaxy__GUI__conditional__metadata__\": {\"type\": \"tsv\", \"__current_case__\": 0, \"source\": {\"__class__\": \"ConnectedValue\"}}}], \"phylogeny\": {\"__class__\": \"ConnectedValue\"}, \"sampling_depth\": {\"__class__\": \"ConnectedValue\"}, \"table\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.1+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "cd47d601-3186-40c0-bd1a-1564728a776d",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "7": {
+ "annotation": "qiime2 diversity alpha-group-significance\nAlpha diversity comparisons",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__alpha_group_significance/qiime2__diversity__alpha_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 7,
+ "input_connections": {
+ "alpha_diversity": {
+ "id": 6,
+ "output_name": "evenness_vector"
+ },
+ "metadata_0|__q2galaxy__GUI__conditional__metadata__|source": {
+ "id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Alpha diversity metrics - Pielou's evenness",
+ "name": "qiime2 diversity alpha-group-significance",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 846.7461791992188,
+ "top": 80.1315673828125
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "alpha_diversity_pielou"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__alpha_group_significance/qiime2__diversity__alpha_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "b7b5dc5a067b",
+ "name": "qiime2__diversity__alpha_group_significance",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"alpha_diversity\": {\"__class__\": \"ConnectedValue\"}, \"metadata\": [{\"__index__\": 0, \"__q2galaxy__GUI__conditional__metadata__\": {\"type\": \"tsv\", \"__current_case__\": 0, \"source\": {\"__class__\": \"ConnectedValue\"}}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.1+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "b1e9c678-9093-4e47-a860-89a0ce54e658",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Alpha diversity - Pielou's evenness",
+ "output_name": "visualization",
+ "uuid": "ec1ab736-8fd7-41b6-b554-38195c2ec954"
+ }
+ ]
+ },
+ "8": {
+ "annotation": "qiime2 diversity alpha-group-significance\nAlpha diversity comparisons",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__alpha_group_significance/qiime2__diversity__alpha_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 8,
+ "input_connections": {
+ "alpha_diversity": {
+ "id": 6,
+ "output_name": "observed_features_vector"
+ },
+ "metadata_0|__q2galaxy__GUI__conditional__metadata__|source": {
+ "id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Alpha diversity metrics - Observed features",
+ "name": "qiime2 diversity alpha-group-significance",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 846.8121938591562,
+ "top": 402.04402416735945
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "alpha_diversity_observed"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__alpha_group_significance/qiime2__diversity__alpha_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "b7b5dc5a067b",
+ "name": "qiime2__diversity__alpha_group_significance",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"alpha_diversity\": {\"__class__\": \"ConnectedValue\"}, \"metadata\": [{\"__index__\": 0, \"__q2galaxy__GUI__conditional__metadata__\": {\"type\": \"tsv\", \"__current_case__\": 0, \"source\": {\"__class__\": \"ConnectedValue\"}}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.1+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "867c60b4-2a64-4b17-82ce-524dcd8b3362",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Alpha diversity - Observed features",
+ "output_name": "visualization",
+ "uuid": "62b5bb9a-75c4-4962-815e-fe03e3b4ec59"
+ }
+ ]
+ },
+ "9": {
+ "annotation": "qiime2 diversity alpha-group-significance\nAlpha diversity comparisons",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__alpha_group_significance/qiime2__diversity__alpha_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 9,
+ "input_connections": {
+ "alpha_diversity": {
+ "id": 6,
+ "output_name": "shannon_vector"
+ },
+ "metadata_0|__q2galaxy__GUI__conditional__metadata__|source": {
+ "id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [],
+ "label": "Alpha diversity metrics - Shannon's diversity index",
+ "name": "qiime2 diversity alpha-group-significance",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 842.9852181246822,
+ "top": 734.0335085712542
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "alpha_diversity_shannon"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__alpha_group_significance/qiime2__diversity__alpha_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "b7b5dc5a067b",
+ "name": "qiime2__diversity__alpha_group_significance",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"alpha_diversity\": {\"__class__\": \"ConnectedValue\"}, \"metadata\": [{\"__index__\": 0, \"__q2galaxy__GUI__conditional__metadata__\": {\"type\": \"tsv\", \"__current_case__\": 0, \"source\": {\"__class__\": \"ConnectedValue\"}}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.1+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "6b2cd5b5-982b-42a2-b8c3-67d768219937",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Alpha diversity - Shannon's diversity index",
+ "output_name": "visualization",
+ "uuid": "077d6bde-1788-4d4f-b3f4-164c04d52c5b"
+ }
+ ]
+ },
+ "10": {
+ "annotation": "qiime2 diversity beta-group-significance\nBeta diversity group",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__beta_group_significance/qiime2__diversity__beta_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 10,
+ "input_connections": {
+ "distance_matrix": {
+ "id": 6,
+ "output_name": "jaccard_distance_matrix"
+ },
+ "metadata|column": {
+ "id": 4,
+ "output_name": "output"
+ },
+ "metadata|source": {
+ "id": 5,
+ "output_name": "imported_data"
+ }
+ },
+ "inputs": [
+ {
+ "description": "runtime parameter for tool qiime2 diversity beta-group-significance",
+ "name": "metadata"
+ },
+ {
+ "description": "runtime parameter for tool qiime2 diversity beta-group-significance",
+ "name": "metadata"
+ }
+ ],
+ "label": "Beta diversity - Jaccard distance matrix",
+ "name": "qiime2 diversity beta-group-significance",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 1183.3696675834228,
+ "top": 79.0184079082341
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "beta_diversity_jaccard"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__beta_group_significance/qiime2__diversity__beta_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "2df83b20af3f",
+ "name": "qiime2__diversity__beta_group_significance",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"method\": \"permanova\", \"pairwise\": false, \"permutations\": \"999\"}, \"distance_matrix\": {\"__class__\": \"ConnectedValue\"}, \"metadata\": {\"type\": \"qza\", \"__current_case__\": 1, \"source\": {\"__class__\": \"ConnectedValue\"}, \"column\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.1+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "df0800f4-d40f-4245-b15f-e7c35e434f41",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Beta diversity - Jaccard distance metrics",
+ "output_name": "visualization",
+ "uuid": "d95ad0c9-e953-4328-94ee-db4cd2457931"
+ }
+ ]
+ },
+ "11": {
+ "annotation": "qiime2 diversity beta-group-significance\nBeta diversity group",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__beta_group_significance/qiime2__diversity__beta_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 11,
+ "input_connections": {
+ "distance_matrix": {
+ "id": 6,
+ "output_name": "bray_curtis_distance_matrix"
+ },
+ "metadata|column": {
+ "id": 4,
+ "output_name": "output"
+ },
+ "metadata|source": {
+ "id": 5,
+ "output_name": "imported_data"
+ }
+ },
+ "inputs": [
+ {
+ "description": "runtime parameter for tool qiime2 diversity beta-group-significance",
+ "name": "metadata"
+ },
+ {
+ "description": "runtime parameter for tool qiime2 diversity beta-group-significance",
+ "name": "metadata"
+ }
+ ],
+ "label": "Beta diversity - Bray-Curtis distance matrix",
+ "name": "qiime2 diversity beta-group-significance",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 1181.5534417354834,
+ "top": 399.32788547201847
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "beta_diversity_bray_curtis"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__beta_group_significance/qiime2__diversity__beta_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "2df83b20af3f",
+ "name": "qiime2__diversity__beta_group_significance",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"method\": \"permanova\", \"pairwise\": false, \"permutations\": \"999\"}, \"distance_matrix\": {\"__class__\": \"ConnectedValue\"}, \"metadata\": {\"type\": \"qza\", \"__current_case__\": 1, \"source\": {\"__class__\": \"ConnectedValue\"}, \"column\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.1+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "7ca4a86e-7a49-4d04-b52e-10c375d856dc",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Beta diversity - Bray-Curtis distance metrics",
+ "output_name": "visualization",
+ "uuid": "32ed3c8e-eb1f-4382-a75f-de9a56c2ddbb"
+ }
+ ]
+ },
+ "12": {
+ "annotation": "Creating a collection for the emperor plots created from core-metrics",
+ "content_id": "__BUILD_LIST__",
+ "errors": null,
+ "id": 12,
+ "input_connections": {
+ "datasets_0|input": {
+ "id": 6,
+ "output_name": "unweighted_unifrac_emperor"
+ },
+ "datasets_1|input": {
+ "id": 6,
+ "output_name": "weighted_unifrac_emperor"
+ },
+ "datasets_2|input": {
+ "id": 6,
+ "output_name": "jaccard_emperor"
+ },
+ "datasets_3|input": {
+ "id": 6,
+ "output_name": "bray_curtis_emperor"
+ }
+ },
+ "inputs": [],
+ "label": "Emperor plot collection",
+ "name": "Build list",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 816.9327117801281,
+ "top": 1111.237105588374
+ },
+ "post_job_actions": {
+ "RenameDatasetActionoutput": {
+ "action_arguments": {
+ "newname": "collection_emperor"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__BUILD_LIST__",
+ "tool_state": "{\"datasets\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"unweighted_unifrac\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"weighted_unifrac\"}}, {\"__index__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"jaccard\"}}, {\"__index__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"bray_curtis\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.2.0",
+ "type": "tool",
+ "uuid": "5fa94d54-8e21-4f2d-89f5-5953b32d3fed",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Emperor plot collection",
+ "output_name": "output",
+ "uuid": "c9c67cb8-7b03-47c6-9672-8e08788b6b4f"
+ }
+ ]
+ },
+ "13": {
+ "annotation": "qiime2 diversity beta-group-significance\nBeta diversity group",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__beta_group_significance/qiime2__diversity__beta_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "errors": null,
+ "id": 13,
+ "input_connections": {
+ "distance_matrix": {
+ "id": 6,
+ "output_name": "weighted_unifrac_distance_matrix"
+ },
+ "metadata|column": {
+ "id": 4,
+ "output_name": "output"
+ },
+ "metadata|source": {
+ "id": 5,
+ "output_name": "imported_data"
+ }
+ },
+ "inputs": [
+ {
+ "description": "runtime parameter for tool qiime2 diversity beta-group-significance",
+ "name": "metadata"
+ },
+ {
+ "description": "runtime parameter for tool qiime2 diversity beta-group-significance",
+ "name": "metadata"
+ }
+ ],
+ "label": "Beta diversity - weighted UniFrac distance matrix",
+ "name": "qiime2 diversity beta-group-significance",
+ "outputs": [
+ {
+ "name": "visualization",
+ "type": "qzv"
+ }
+ ],
+ "position": {
+ "left": 1189.8275957319759,
+ "top": 730.5232235877588
+ },
+ "post_job_actions": {
+ "RenameDatasetActionvisualization": {
+ "action_arguments": {
+ "newname": "beta_diversity_weighted_unifrac"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "visualization"
+ }
+ },
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/q2d2/qiime2__diversity__beta_group_significance/qiime2__diversity__beta_group_significance/2023.5.1+q2galaxy.2023.5.0.2",
+ "tool_shed_repository": {
+ "changeset_revision": "2df83b20af3f",
+ "name": "qiime2__diversity__beta_group_significance",
+ "owner": "q2d2",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"__q2galaxy__GUI__section__extra_opts__\": {\"method\": \"permanova\", \"pairwise\": false, \"permutations\": \"999\"}, \"distance_matrix\": {\"__class__\": \"ConnectedValue\"}, \"metadata\": {\"type\": \"qza\", \"__current_case__\": 1, \"source\": {\"__class__\": \"ConnectedValue\"}, \"column\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2023.5.1+q2galaxy.2023.5.0.2",
+ "type": "tool",
+ "uuid": "e16130db-b499-4d24-8950-b3779969258d",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Beta diversity - weighted UniFrac distance metrics",
+ "output_name": "visualization",
+ "uuid": "2bd1213c-b75b-45c4-b8e2-69a2b0d7a000"
+ }
+ ]
+ },
+ "14": {
+ "annotation": "Creating a collection for the pcoa indices created from core-metrics",
+ "content_id": "__BUILD_LIST__",
+ "errors": null,
+ "id": 14,
+ "input_connections": {
+ "datasets_0|input": {
+ "id": 6,
+ "output_name": "bray_curtis_pcoa_results"
+ },
+ "datasets_1|input": {
+ "id": 6,
+ "output_name": "weighted_unifrac_pcoa_results"
+ },
+ "datasets_2|input": {
+ "id": 6,
+ "output_name": "unweighted_unifrac_pcoa_results"
+ },
+ "datasets_3|input": {
+ "id": 6,
+ "output_name": "jaccard_pcoa_results"
+ }
+ },
+ "inputs": [],
+ "label": "PCoA collection",
+ "name": "Build list",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 1154.1830644819759,
+ "top": 1143.3454485226546
+ },
+ "post_job_actions": {
+ "RenameDatasetActionoutput": {
+ "action_arguments": {
+ "newname": "collection_pcoa"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__BUILD_LIST__",
+ "tool_state": "{\"datasets\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"unweighted_unifrac\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"weighted_unifrac\"}}, {\"__index__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"jaccard\"}}, {\"__index__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"bray_curtis\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.2.0",
+ "type": "tool",
+ "uuid": "ecfc4438-5355-436b-8508-8bd4bfcb03ba",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "PCoA collection",
+ "output_name": "output",
+ "uuid": "96716878-d1c1-4dd1-9acd-d4cdc736f884"
+ }
+ ]
+ },
+ "15": {
+ "annotation": "Creating a collection for distance matrix created from core-metrics",
+ "content_id": "__BUILD_LIST__",
+ "errors": null,
+ "id": 15,
+ "input_connections": {
+ "datasets_0|input": {
+ "id": 6,
+ "output_name": "bray_curtis_distance_matrix"
+ },
+ "datasets_1|input": {
+ "id": 6,
+ "output_name": "weighted_unifrac_distance_matrix"
+ },
+ "datasets_2|input": {
+ "id": 6,
+ "output_name": "unweighted_unifrac_distance_matrix"
+ },
+ "datasets_3|input": {
+ "id": 6,
+ "output_name": "jaccard_distance_matrix"
+ }
+ },
+ "inputs": [],
+ "label": "Distance matrix collection",
+ "name": "Build list",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 1467.0719804976009,
+ "top": 1126.3676653195296
+ },
+ "post_job_actions": {
+ "RenameDatasetActionoutput": {
+ "action_arguments": {
+ "newname": "collection_distance_matrix"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__BUILD_LIST__",
+ "tool_state": "{\"datasets\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"unweighted_unifrac\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"weighted_unifrac\"}}, {\"__index__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"jaccard\"}}, {\"__index__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"bray_curtis\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.2.0",
+ "type": "tool",
+ "uuid": "9a17d575-227f-4f98-a949-d5d90e733a41",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Distance matrix collection",
+ "output_name": "output",
+ "uuid": "81caf090-13e7-4304-8348-4cf87352fb30"
+ }
+ ]
+ },
+ "16": {
+ "annotation": "Creating a collection for indices of community richness and evenness created from core-metrics",
+ "content_id": "__BUILD_LIST__",
+ "errors": null,
+ "id": 16,
+ "input_connections": {
+ "datasets_0|input": {
+ "id": 6,
+ "output_name": "rarefied_table"
+ },
+ "datasets_1|input": {
+ "id": 6,
+ "output_name": "faith_pd_vector"
+ },
+ "datasets_2|input": {
+ "id": 6,
+ "output_name": "observed_features_vector"
+ },
+ "datasets_3|input": {
+ "id": 6,
+ "output_name": "evenness_vector"
+ },
+ "datasets_4|input": {
+ "id": 6,
+ "output_name": "shannon_vector"
+ }
+ },
+ "inputs": [],
+ "label": "Richness and evenness collection",
+ "name": "Build list",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 1788.2942298465593,
+ "top": 1104.9898983924463
+ },
+ "post_job_actions": {
+ "RenameDatasetActionoutput": {
+ "action_arguments": {
+ "newname": "collection_richness_evenness"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "output"
+ }
+ },
+ "tool_id": "__BUILD_LIST__",
+ "tool_state": "{\"datasets\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"rarefied_table\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"faith_pd_vector\"}}, {\"__index__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"observed_features_vector\"}}, {\"__index__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"shannon_vector\"}}, {\"__index__\": 4, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"manual\", \"__current_case__\": 2, \"identifier\": \"eveness_vector\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.2.0",
+ "type": "tool",
+ "uuid": "032f5d65-2ed6-47b2-8837-25aa360fd355",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Richness and evenness collection",
+ "output_name": "output",
+ "uuid": "b17fd336-7d7c-4b1f-a0ef-0337323ba9d5"
+ }
+ ]
+ }
+ },
+ "tags": [],
+ "uuid": "300b5a7d-f763-486a-a8ea-87ea84571f19",
+ "version": 2
+}
diff --git a/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/README.md b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/README.md
new file mode 100644
index 000000000..55a291454
--- /dev/null
+++ b/workflows/amplicon/qiime2/qiime2-III-VI-downsteam/README.md
@@ -0,0 +1,70 @@
+# QIIME2 workflows
+
+## Available workflows
+
+- III-V Downstream analyses: III) reconstruct a taxonomy for diversity analysis, IV) rarefaction analysis, V) taxonomic analysis.
+- VI: Computation of diversity metrics and estimations
+
+Analogous to the procedures described in the Parkinson’s Mouse Tutorial: https://docs.qiime2.org/2024.5/tutorials/pd-mice/
+
+## Inputs
+
+The two workflows have two inputs in common
+
+- Feature table: Count data
+- Metadata: Metadata table
+
+and the following extra inputs
+
+III-V
+
+- Representative sequences: Representative (ASV) sequences
+- Minimum depth: Lower limit of the sampling depth for the alpha rarefaction analysis
+- Maximum depth: Upper limit of the sampling depth for the alpha rarefaction analysis
+- SEPP fragment insertion reference: used for the reconstruction of the phylogenetic tree
+- Taxonomic classifier: The classifier to assign taxonomic information to the ASVs
+
+VI:
+
+Sampling depth: For the metric calculation (should be based on the rarefaction analysis done in IV)
+Target metadata parameter: that should be used for beta diversity calculations
+Rooted Tree: for instance the tree computed in III
+
+## Processing
+
+III-V
+
+- Phylogenetic tree generation using `qiime2 fragment-insertion sepp`
+- Alpha rarefaction analysis using `qiime2 diversity alpha-rarefaction`
+- Taxonomic classification using `qiime2 feature-classifier classify-sklearn` and compute barplot and tabular output
+
+VI:
+
+- compute alpha and beta diversity metrics using `qiime2 diversity core-metrics-phylogenetic`
+- organize these metrics in 4 collections:
+ 1. Distance matrix collection (weighted and unweighted unifrac, jaccard and bray curtis)
+ 2. PCoA collection (same as the distance matrices)
+ 3. Emperor plot collection (same as the distance matrices)
+ 4. Richness and evenness collection (rarefied table, faith pd vector observed features vector, shannon vector, evenness vector)
+- get visualization for alpha diversity:
+ - Pielou's eveness
+ - Observed features
+ - Shannons diversity index
+- get visualization for beta diversity
+ - Jaccard distance matrix
+ - Bray curtis distance matrix
+ - Unifrac distance metrix
+
+## Outputs
+
+III-V:
+
+- Phylogenetic tree
+- Rarefaction curve
+- Taxonomic classification (as qza, barplot and table)
+
+VI:
+
+- Four collections containing: distance matrix, PCoA, Emperor plots, Richness and evenness
+- Visualization for alpha diversity: Pielou's eveness, Observed features, Shannons diversity index
+- Visualization for beta diversity: Jaccard, Bray curtis, Unifrac
\ No newline at end of file
diff --git a/workflows/bacterial_genomics/amr_gene_detection/CHANGELOG.md b/workflows/bacterial_genomics/amr_gene_detection/CHANGELOG.md
index 2e02859a8..bbeba9871 100644
--- a/workflows/bacterial_genomics/amr_gene_detection/CHANGELOG.md
+++ b/workflows/bacterial_genomics/amr_gene_detection/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [1.1.3] 2024-09-30
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0`
+- `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0`
+
+## [1.1.2] 2024-09-19
+
+### Manual update
+
+- Change percent identity threshold for Resfinder blast results in StarAMR from 98.0% to 90.0%
+
## [1.1.1] 2024-07-08
### Automatic update
diff --git a/workflows/bacterial_genomics/amr_gene_detection/amr_gene_detection-tests.yml b/workflows/bacterial_genomics/amr_gene_detection/amr_gene_detection-tests.yml
index c7a1de448..a3ef9036f 100644
--- a/workflows/bacterial_genomics/amr_gene_detection/amr_gene_detection-tests.yml
+++ b/workflows/bacterial_genomics/amr_gene_detection/amr_gene_detection-tests.yml
@@ -5,58 +5,58 @@
path: https://zenodo.org/records/11488310/files/shovill_contigs_fasta
outputs:
staramr_detailed_summary:
- assert:
- has_text:
- text: "Resistance"
- has_n_columns:
- n: 12
+ asserts:
+ has_text:
+ text: "Resistance"
+ has_n_columns:
+ n: 12
staramr_resfinder_report:
- assert:
- has_text:
- text: "tetracycline"
- has_n_columns:
- n: 13
+ asserts:
+ has_text:
+ text: "tetracycline"
+ has_n_columns:
+ n: 13
staramr_mlst_report:
- assert:
+ asserts:
has_text:
text: "efaecalis"
has_n_columns:
n: 10
staramr_plasmidfinder_report:
- assert:
+ asserts:
has_text:
text: "CP002494"
has_n_columns:
n: 9
staramr_summary:
- assert:
+ asserts:
has_text:
text: "streptomycin"
has_n_columns:
n: 12
amrfinderplus_report:
- assert:
+ asserts:
has_text:
text: "Enterococcus faecalis quinolone resistant ParC"
has_n_columns:
n: 23
amrfinderplus_mutation:
- assert:
+ asserts:
has_text:
text: "cardiolipin synthase Cls"
has_n_columns:
n: 23
abricate_virulence_report:
- assert:
+ asserts:
has_text:
text: "endocarditis specific antigen"
has_n_columns:
n: 15
tooldistillator_summarize:
- assert:
- has_text:
+ asserts:
+ - that: "has_text"
text: "% Identity to reference sequence"
- has_text:
+ - that: "has_text"
text: "Enterococcus faecalis V583"
- has_text:
- text: "CGE Predicted Phenotype"
+ - that: "has_text"
+ text: "Fibrinogen binding protein"
diff --git a/workflows/bacterial_genomics/amr_gene_detection/amr_gene_detection.ga b/workflows/bacterial_genomics/amr_gene_detection/amr_gene_detection.ga
index 16290adad..9f83b43bc 100644
--- a/workflows/bacterial_genomics/amr_gene_detection/amr_gene_detection.ga
+++ b/workflows/bacterial_genomics/amr_gene_detection/amr_gene_detection.ga
@@ -27,7 +27,7 @@
],
"format-version": "0.1",
"license": "GPL-3.0-or-later",
- "release": "1.1.1",
+ "release": "1.1.3",
"name": "amr_gene_detection",
"steps": {
"0": {
@@ -311,7 +311,7 @@
"owner": "nml",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"advanced\": {\"pid_threshold\": \"98.0\", \"plength_resfinder\": \"60.0\", \"plength_pointfinder\": \"95.0\", \"plength_plasmidfinder\": \"60.0\", \"genome_size_lower_bound\": \"4000000\", \"genome_size_upper_bound\": \"6000000\", \"minimum_N50_value\": \"10000\", \"minimum_contig_length\": \"300\", \"unacceptable_number_contigs\": \"1000\", \"report_all_blast\": false, \"exclude_negatives\": false, \"exclude_resistance_phenotypes\": false, \"mlst_scheme\": \"auto\", \"exclude_genes\": {\"exclude_genes_condition\": \"default\", \"__current_case__\": 0}, \"complex_mutations\": {\"complex_mutations_condition\": \"default\", \"__current_case__\": 0}, \"plasmidfinder_type\": \"include_all\"}, \"genomes\": {\"__class__\": \"ConnectedValue\"}, \"pointfinder_db\": {\"use_pointfinder\": \"disabled\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_state": "{\"advanced\": {\"pid_threshold\": \"90.0\", \"plength_resfinder\": \"60.0\", \"plength_pointfinder\": \"95.0\", \"plength_plasmidfinder\": \"60.0\", \"genome_size_lower_bound\": \"4000000\", \"genome_size_upper_bound\": \"6000000\", \"minimum_N50_value\": \"10000\", \"minimum_contig_length\": \"300\", \"unacceptable_number_contigs\": \"1000\", \"report_all_blast\": false, \"exclude_negatives\": false, \"exclude_resistance_phenotypes\": false, \"mlst_scheme\": \"auto\", \"exclude_genes\": {\"exclude_genes_condition\": \"default\", \"__current_case__\": 0}, \"complex_mutations\": {\"complex_mutations_condition\": \"default\", \"__current_case__\": 0}, \"plasmidfinder_type\": \"include_all\"}, \"genomes\": {\"__class__\": \"ConnectedValue\"}, \"pointfinder_db\": {\"use_pointfinder\": \"disabled\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
"tool_version": "0.10.0+galaxy1",
"type": "tool",
"uuid": "10eed503-9e5b-4acf-8cd8-29e81d7668a5",
@@ -528,7 +528,7 @@
},
"7": {
"annotation": "ToolDistillator extracts results from tools and creates a JSON file for each tool",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0",
"errors": null,
"id": 7,
"input_connections": {
@@ -598,15 +598,15 @@
"output_name": "output_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "a7387ce2a8ca",
+ "changeset_revision": "8d6686664021",
"name": "tooldistillator",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"log\": false, \"tool_section\": {\"tools\": [{\"__index__\": 0, \"select_tool\": {\"tool_list\": \"abricate\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.0.1\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"select_tool\": {\"tool_list\": \"staramr\", \"__current_case__\": 20, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mlst_file_path\": {\"__class__\": \"ConnectedValue\"}, \"plasmidfinder_file_path\": {\"__class__\": \"RuntimeValue\"}, \"pointfinder_file_path\": {\"__class__\": \"RuntimeValue\"}, \"setting_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"0.10.0\", \"reference_database_version\": null}}, {\"__index__\": 2, \"select_tool\": {\"tool_list\": \"amrfinderplus\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"point_mutation_report_path\": {\"__class__\": \"ConnectedValue\"}, \"nucleotide_sequence_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"3.12.8\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.9+galaxy0",
+ "tool_version": "0.9.1+galaxy0",
"type": "tool",
"uuid": "1589f8a1-65b6-43f0-9e75-cad9b1752e5c",
"when": null,
@@ -620,7 +620,7 @@
},
"8": {
"annotation": "ToolDistillator summarize groups all JSON file into a unique JSON file",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0",
"errors": null,
"id": 8,
"input_connections": {
@@ -658,15 +658,15 @@
"output_name": "summary_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "def7a82d23e1",
+ "changeset_revision": "f3233d395549",
"name": "tooldistillator_summarize",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"summarize_data\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.9+galaxy0",
+ "tool_version": "0.9.1+galaxy0",
"type": "tool",
"uuid": "a88f6b82-502c-46cf-a174-2c8361e8e8dd",
"when": null,
diff --git a/workflows/bacterial_genomics/bacterial_genome_annotation/CHANGELOG.md b/workflows/bacterial_genomics/bacterial_genome_annotation/CHANGELOG.md
index b7ca5db4a..a484bdfad 100644
--- a/workflows/bacterial_genomics/bacterial_genome_annotation/CHANGELOG.md
+++ b/workflows/bacterial_genomics/bacterial_genome_annotation/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## [1.1.5] 2024-09-30
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0`
+- `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0`
+
+## [1.1.4] 2024-09-19
+
+### Manual update
+
+- Updated the tool versions manually in the ToolDistillator parameters
+
+## [1.1.3] 2024-09-09
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.4+galaxy0`
+
## [1.1.2] - 2024-07-19
- PlasmidFinder database correction in .ga
diff --git a/workflows/bacterial_genomics/bacterial_genome_annotation/bacterial_genome_annotation-tests.yml b/workflows/bacterial_genomics/bacterial_genome_annotation/bacterial_genome_annotation-tests.yml
index 96a7fc4de..96b577b03 100644
--- a/workflows/bacterial_genomics/bacterial_genome_annotation/bacterial_genome_annotation-tests.yml
+++ b/workflows/bacterial_genomics/bacterial_genome_annotation/bacterial_genome_annotation-tests.yml
@@ -8,54 +8,52 @@
Select a AMRFinderPlus database: amrfinderplus_V3.12_2024-05-02.2
outputs:
integronfinder2_logfile_text:
- assert:
+ asserts:
has_text:
text: "Writing out results for replicon"
integronfinder2_summary:
- assert:
- has_n_columns:
- n: 6
+ asserts:
+ has_text:
+ text: "contig00001"
integronfinder2_results_tabular:
- assert:
- has_n_columns:
- n: 14
+ asserts:
+ has_text:
+ text: "contig00009_42"
bakta_hypothetical_tabular:
- assert:
- has_n_columns:
- n: 9
+ asserts:
+ has_text:
+ text: "DHJLLP_04750"
bakta_annotation_json:
- assert:
+ asserts:
has_text:
text: "aa_hexdigest"
bakta_annotation_tabular:
- assert:
- has_n_columns:
- n: 9
+ asserts:
+ has_text:
+ text: "Phosphotransferase system cellobiose-specific component IIC"
isescan_results_tabular:
- assert:
- has_n_columns:
- n: 24
+ asserts:
+ has_text:
+ text: "IS256_162"
isescan_summary_tabular:
- assert:
+ asserts:
has_text:
text: "nIS"
isescan_logfile_text:
- assert:
+ asserts:
has_text:
text: "Both complete and partial IS elements are reported."
plasmidfinder_result_json:
- assert:
+ asserts:
has_text:
text: "positions_in_contig"
plasmidfinder_results_tabular:
- assert:
+ asserts:
has_n_columns:
n: 8
tooldistillator_summarize:
- assert:
- has_text:
+ asserts:
+ - that: "has_text"
text: "CDS12738(DOp1)"
- has_text:
- text: "CALIN"
- has_text:
- text: "insertion_sequence"
+ - that: "has_text"
+ text: "PFAM"
\ No newline at end of file
diff --git a/workflows/bacterial_genomics/bacterial_genome_annotation/bacterial_genome_annotation.ga b/workflows/bacterial_genomics/bacterial_genome_annotation/bacterial_genome_annotation.ga
index ccb7df177..17b5af4c6 100644
--- a/workflows/bacterial_genomics/bacterial_genome_annotation/bacterial_genome_annotation.ga
+++ b/workflows/bacterial_genomics/bacterial_genome_annotation/bacterial_genome_annotation.ga
@@ -27,7 +27,7 @@
],
"format-version": "0.1",
"license": "GPL-3.0-or-later",
- "release": "1.1.2",
+ "release": "1.1.5",
"name": "bacterial_genome_annotation",
"steps": {
"0": {
@@ -632,7 +632,7 @@
},
"7": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.4+galaxy0",
"errors": null,
"id": 7,
"input_connections": {
@@ -905,15 +905,15 @@
"output_name": "summary_txt"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.4+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "ba6990f72184",
+ "changeset_revision": "d77802fe76f7",
"name": "bakta",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"annotation\": {\"complete\": false, \"prodigal\": {\"__class__\": \"RuntimeValue\"}, \"translation_table\": \"11\", \"keep_contig_headers\": false, \"replicons\": {\"__class__\": \"RuntimeValue\"}, \"compliant\": false, \"proteins\": {\"__class__\": \"RuntimeValue\"}, \"meta\": false, \"regions\": {\"__class__\": \"RuntimeValue\"}}, \"input_option\": {\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"min_contig_length\": null, \"bakta_db_select\": {\"__class__\": \"ConnectedValue\"}, \"amrfinder_db_select\": {\"__class__\": \"ConnectedValue\"}}, \"organism\": {\"genus\": null, \"species\": null, \"strain\": null, \"plasmid\": null}, \"output_files\": {\"output_selection\": [\"file_tsv\", \"file_gff3\", \"file_ffn\", \"file_plot\", \"file_gbff\", \"file_embl\", \"file_fna\", \"file_faa\", \"hypo_tsv\", \"hypo_fa\", \"file_json\", \"sum_txt\"]}, \"workflow\": {\"skip_analysis\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.9.3+galaxy0",
+ "tool_version": "1.9.4+galaxy0",
"type": "tool",
"uuid": "0a32dcad-f456-460e-9e6f-9e306a8fd515",
"when": null,
@@ -982,7 +982,7 @@
},
"8": {
"annotation": "ToolDistillator extracts results from tools and creates a JSON file for each tool",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0",
"errors": null,
"id": 8,
"input_connections": {
@@ -1120,15 +1120,15 @@
"output_name": "output_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "a7387ce2a8ca",
+ "changeset_revision": "8d6686664021",
"name": "tooldistillator",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"log\": false, \"tool_section\": {\"tools\": [{\"__index__\": 0, \"select_tool\": {\"tool_list\": \"plasmidfinder\", \"__current_case__\": 14, \"input\": {\"__class__\": \"ConnectedValue\"}, \"plasmid_result_tabular_path\": {\"__class__\": \"ConnectedValue\"}, \"genome_hit_path\": {\"__class__\": \"ConnectedValue\"}, \"plasmid_hit_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"2.1.6\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"select_tool\": {\"tool_list\": \"isescan\", \"__current_case__\": 11, \"input\": {\"__class__\": \"ConnectedValue\"}, \"summary_path\": {\"__class__\": \"ConnectedValue\"}, \"annotation_path\": {\"__class__\": \"ConnectedValue\"}, \"orf_fna_path\": {\"__class__\": \"ConnectedValue\"}, \"orf_faa_path\": {\"__class__\": \"ConnectedValue\"}, \"is_fna_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.7.2.3\", \"reference_database_version\": null}}, {\"__index__\": 2, \"select_tool\": {\"tool_list\": \"integronfinder2\", \"__current_case__\": 10, \"input\": {\"__class__\": \"ConnectedValue\"}, \"summary_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"2.0.2\", \"reference_database_version\": null}}, {\"__index__\": 3, \"select_tool\": {\"tool_list\": \"bakta\", \"__current_case__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}, \"annotation_tabular_path\": {\"__class__\": \"ConnectedValue\"}, \"annotation_genbank_path\": {\"__class__\": \"ConnectedValue\"}, \"annotation_embl_path\": {\"__class__\": \"ConnectedValue\"}, \"contig_sequences_path\": {\"__class__\": \"ConnectedValue\"}, \"hypothetical_protein_path\": {\"__class__\": \"ConnectedValue\"}, \"hypothetical_tabular_path\": {\"__class__\": \"ConnectedValue\"}, \"plot_file_path\": {\"__class__\": \"ConnectedValue\"}, \"summary_result_path\": {\"__class__\": \"ConnectedValue\"}, \"nucleotide_annotation_path\": {\"__class__\": \"ConnectedValue\"}, \"amino_acid_annotation_path\": {\"__class__\": \"ConnectedValue\"}, \"gff_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.9.3\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.9+galaxy0",
+ "tool_state": "{\"log\": false, \"tool_section\": {\"tools\": [{\"__index__\": 0, \"select_tool\": {\"tool_list\": \"plasmidfinder\", \"__current_case__\": 14, \"input\": {\"__class__\": \"ConnectedValue\"}, \"plasmid_result_tabular_path\": {\"__class__\": \"ConnectedValue\"}, \"genome_hit_path\": {\"__class__\": \"ConnectedValue\"}, \"plasmid_hit_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"2.1.6\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"select_tool\": {\"tool_list\": \"isescan\", \"__current_case__\": 11, \"input\": {\"__class__\": \"ConnectedValue\"}, \"summary_path\": {\"__class__\": \"ConnectedValue\"}, \"annotation_path\": {\"__class__\": \"ConnectedValue\"}, \"orf_fna_path\": {\"__class__\": \"ConnectedValue\"}, \"orf_faa_path\": {\"__class__\": \"ConnectedValue\"}, \"is_fna_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.7.2.3\", \"reference_database_version\": null}}, {\"__index__\": 2, \"select_tool\": {\"tool_list\": \"integronfinder2\", \"__current_case__\": 10, \"input\": {\"__class__\": \"ConnectedValue\"}, \"summary_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"2.0.5\", \"reference_database_version\": null}}, {\"__index__\": 3, \"select_tool\": {\"tool_list\": \"bakta\", \"__current_case__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}, \"annotation_tabular_path\": {\"__class__\": \"ConnectedValue\"}, \"annotation_genbank_path\": {\"__class__\": \"ConnectedValue\"}, \"annotation_embl_path\": {\"__class__\": \"ConnectedValue\"}, \"contig_sequences_path\": {\"__class__\": \"ConnectedValue\"}, \"hypothetical_protein_path\": {\"__class__\": \"ConnectedValue\"}, \"hypothetical_tabular_path\": {\"__class__\": \"ConnectedValue\"}, \"plot_file_path\": {\"__class__\": \"ConnectedValue\"}, \"summary_result_path\": {\"__class__\": \"ConnectedValue\"}, \"nucleotide_annotation_path\": {\"__class__\": \"ConnectedValue\"}, \"amino_acid_annotation_path\": {\"__class__\": \"ConnectedValue\"}, \"gff_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.9.4\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "0.9.1+galaxy0",
"type": "tool",
"uuid": "678bdbfe-7a3a-4a91-8ea7-1cb17f53daa6",
"when": null,
@@ -1142,7 +1142,7 @@
},
"9": {
"annotation": "ToolDistillator summarize groups all JSON file into a unique JSON file",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0",
"errors": null,
"id": 9,
"input_connections": {
@@ -1180,15 +1180,15 @@
"output_name": "summary_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "def7a82d23e1",
+ "changeset_revision": "f3233d395549",
"name": "tooldistillator_summarize",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"summarize_data\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.9+galaxy0",
+ "tool_version": "0.9.1+galaxy0",
"type": "tool",
"uuid": "3427b1f1-79ce-4ade-a350-baf15ac250c2",
"when": null,
@@ -1211,4 +1211,4 @@
],
"uuid": "d55a9e46-a205-4143-b92f-3783499063ed",
"version": 1
-}
+}
\ No newline at end of file
diff --git a/workflows/computational-chemistry/fragment-based-docking-scoring/fragment-based-docking-scoring-tests.yml b/workflows/computational-chemistry/fragment-based-docking-scoring/fragment-based-docking-scoring-tests.yml
index c514aa209..5da14f26d 100644
--- a/workflows/computational-chemistry/fragment-based-docking-scoring/fragment-based-docking-scoring-tests.yml
+++ b/workflows/computational-chemistry/fragment-based-docking-scoring/fragment-based-docking-scoring-tests.yml
@@ -21,10 +21,11 @@
SuCOS threshold: 0
outputs:
Scored and filtered poses:
- class: File
- assert:
- has_line: "$$$$"
- n: 4
- assert:
- has_test: "SuCOS_Score"
- n: 4
+ asserts:
+ has_line:
+ line: "$$$$"
+ n: 4
+ asserts:
+ has_text:
+ text: "SuCOS_Score"
+ n: 4
diff --git a/workflows/epigenetics/atacseq/CHANGELOG.md b/workflows/epigenetics/atacseq/CHANGELOG.md
index 45148b198..4b0e6dc95 100644
--- a/workflows/epigenetics/atacseq/CHANGELOG.md
+++ b/workflows/epigenetics/atacseq/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## [0.17] 2024-09-23
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3`
+- `toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0` was updated to `toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0`
+
+### Manual update
+- Add a step to remove comments lines from histogram to be compatible with new multiQC version
+
## [0.16] 2024-07-15
### Automatic update
diff --git a/workflows/epigenetics/atacseq/atacseq-tests.yml b/workflows/epigenetics/atacseq/atacseq-tests.yml
index 133f508b1..1b2a1961d 100644
--- a/workflows/epigenetics/atacseq/atacseq-tests.yml
+++ b/workflows/epigenetics/atacseq/atacseq-tests.yml
@@ -98,31 +98,11 @@
value: 1133795
delta: 100000
'MultiQC on input dataset(s): Stats':
- element_tests:
- bowtie2:
- asserts:
- has_line:
- line: "SRR891268_chr22_enriched\t280964\t280964\t30410\t109333\t141221\t13319\t6127\t6515\t21540\t98.91\t10770.0\t3063.5\t3257.5"
- cutadapt:
- asserts:
- has_line:
- line: "SRR891268_chr22_enriched_2\t4.9\t285247\t41011\t40415\t4283\t280964\t28524700\t480633\t27163516\t4.771948521807416"
- general_stats:
- asserts:
- has_text:
- text: "SRR891268_chr22_enriched\t200.0\t223\t0.028469\t98.91"
- macs:
- asserts:
- has_line:
- line: "SRR891268_chr22_enriched\t223\t47.0\t232804.0\t200.0"
- picard_dups:
- asserts:
- has_line:
- line: "SRR891268_chr22_enriched\tUnknown Library\t0.0\t119813.0\t0.0\t0.0\t0.0\t3411.0\t5.0\t0.028469\t2067029.0"
- sources:
- asserts:
- has_n_lines:
- n: 4
+ asserts:
+ has_line:
+ line: "Sample MACS2_mqc_generalstats_macs2_d MACS2_mqc_generalstats_macs2_peak_count Picard: Mark Duplicates_mqc_generalstats_picard_mark_duplicates_PERCENT_DUPLICATION Bowtie 2 / HiSAT2_mqc_generalstats_bowtie_2_hisat2_overall_alignment_rate Cutadapt_mqc_generalstats_cutadapt_percent_trimmed"
+ has_text_matching:
+ expression: "SRR891268_chr22_enriched\t200.0\t223\t2.8[0-9]*\t98.[0-9]*\t4.7[0-9]*"
MultiQC webpage:
asserts:
- that: "has_text"
diff --git a/workflows/epigenetics/atacseq/atacseq.ga b/workflows/epigenetics/atacseq/atacseq.ga
index 6d7327a26..a885049d5 100644
--- a/workflows/epigenetics/atacseq/atacseq.ga
+++ b/workflows/epigenetics/atacseq/atacseq.ga
@@ -1,6 +1,7 @@
{
"a_galaxy_workflow": "true",
"annotation": "This workflow takes as input a collection of paired fastq. It will remove bad quality and adapters with cutadapt. Map with Bowtie2 end-to-end. Will remove reads on MT and unconcordant pairs and pairs with mapping quality below 30 and PCR duplicates. Will compute the pile-up on 5' +- 100bp. Will call peaks and count the number of reads falling in the 1kb region centered on the summit. Will compute 2 normalization for coverage: normalized by million reads and normalized by million reads in peaks. Will plot the number of reads for each fragment length.",
+ "comments": [],
"creator": [
{
"class": "Person",
@@ -10,7 +11,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "0.16",
+ "release": "0.17",
"name": "ATACseq",
"steps": {
"0": {
@@ -123,7 +124,7 @@
},
"4": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
"id": 4,
"input_connections": {
@@ -173,15 +174,15 @@
"output_name": "report"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "aa784cb3810d",
+ "changeset_revision": "5eb7e84243f2",
"name": "cutadapt",
"owner": "lparsons",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": false, \"no_match_adapter_wildcards\": true, \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"15\", \"minimum_length2\": null, \"maximum_length\": null, \"maximum_length2\": null, \"max_n\": null, \"max_expected_errors\": null, \"max_average_error_rate\": null, \"discard_casava\": false, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Nextera R1\", \"adapter\": \"CTGTCTCTTATACACATCTCCGAGCCCACGAGAC\"}, \"single_noindels\": false}], \"front_adapters\": [], \"anywhere_adapters\": []}, \"r2\": {\"adapters2\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Nextera R2\", \"adapter\": \"CTGTCTCTTATACACATCTGACGCTGCCGACGA\"}, \"single_noindels\": false}], \"front_adapters2\": [], \"anywhere_adapters2\": []}, \"pair_adapters\": false}, \"other_trimming_options\": {\"cut\": \"0\", \"cut2\": \"0\", \"quality_cutoff\": \"30\", \"quality_cutoff2\": \"\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"poly_a\": false, \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"shorten_options_r2\": {\"shorten_values_r2\": \"False\", \"__current_case__\": 1}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"strip_suffix\": \"\", \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "4.9+galaxy0",
+ "tool_version": "4.9+galaxy1",
"type": "tool",
"uuid": "33fa2759-9f3f-431b-b35c-b5c777d5d5b7",
"when": null,
@@ -477,7 +478,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -605,7 +606,7 @@
},
"12": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"errors": null,
"id": 12,
"input_connections": {
@@ -634,15 +635,15 @@
"output_name": "outputcnt"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"tool_shed_repository": {
- "changeset_revision": "6be888be75f9",
+ "changeset_revision": "32dc5f781059",
"name": "samtools_view",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"all_reads\", \"__current_case__\": 0, \"output_options\": {\"reads_report_type\": \"count\", \"__current_case__\": 1}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.15.1+galaxy2",
+ "tool_version": "1.20+galaxy3",
"type": "tool",
"uuid": "2999f836-c74f-47ed-b1ad-81f43349fe11",
"when": null,
@@ -789,9 +790,53 @@
},
"14": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"errors": null,
"id": 14,
+ "input_connections": {
+ "infile": {
+ "id": 11,
+ "output_name": "output2"
+ }
+ },
+ "inputs": [
+ {
+ "description": "runtime parameter for tool Search in textfiles",
+ "name": "infile"
+ }
+ ],
+ "label": "remove comments lines",
+ "name": "Search in textfiles",
+ "outputs": [
+ {
+ "name": "output",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 1780,
+ "top": 701.4833374023438
+ },
+ "post_job_actions": {},
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
+ "tool_shed_repository": {
+ "changeset_revision": "86755160afbf",
+ "name": "text_processing",
+ "owner": "bgruening",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"case_sensitive\": \"-i\", \"color\": \"NOCOLOR\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"invert\": \"-v\", \"lines_after\": \"0\", \"lines_before\": \"0\", \"regex_type\": \"-P\", \"url_paste\": \"^#\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "9.3+galaxy1",
+ "type": "tool",
+ "uuid": "c06960f8-9d4e-483e-8f07-12976f8b802a",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "15": {
+ "annotation": "",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1",
+ "errors": null,
+ "id": 15,
"input_connections": {
"input": {
"id": 12,
@@ -818,25 +863,25 @@
"output_name": "out_file1"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1",
"tool_shed_repository": {
- "changeset_revision": "6595517c2dd8",
+ "changeset_revision": "aff5135563c6",
"name": "column_maker",
"owner": "devteam",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"avoid_scientific_notation\": true, \"error_handling\": {\"auto_col_types\": true, \"fail_on_non_existent_columns\": true, \"non_computable\": {\"action\": \"--fail-on-non-computable\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"ops\": {\"header_lines_select\": \"no\", \"__current_case__\": 0, \"expressions\": [{\"__index__\": 0, \"cond\": \"1000000/c1\", \"add_column\": {\"mode\": \"R\", \"__current_case__\": 2, \"pos\": \"1\"}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.0",
+ "tool_version": "2.1",
"type": "tool",
"uuid": "ec62cddf-fb04-4185-b9f4-709de2ce0202",
"when": null,
"workflow_outputs": []
},
- "15": {
+ "16": {
"annotation": "",
"content_id": "wig_to_bigWig",
"errors": null,
- "id": 15,
+ "id": 16,
"input_connections": {
"input1": {
"id": 13,
@@ -879,11 +924,11 @@
}
]
},
- "16": {
+ "17": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_slopbed/2.31.1+galaxy0",
"errors": null,
- "id": 16,
+ "id": 17,
"input_connections": {
"genome_file_opts|genome": {
"id": 1,
@@ -940,11 +985,11 @@
"when": null,
"workflow_outputs": []
},
- "17": {
+ "18": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"errors": null,
- "id": 17,
+ "id": 18,
"input_connections": {
"infile": {
"id": 13,
@@ -982,7 +1027,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1000,14 +1045,14 @@
}
]
},
- "18": {
+ "19": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 18,
+ "id": 19,
"input_connections": {
"input1": {
- "id": 14,
+ "id": 15,
"output_name": "out_file1"
}
},
@@ -1039,14 +1084,14 @@
"when": null,
"workflow_outputs": []
},
- "19": {
+ "20": {
"annotation": "",
"content_id": "__APPLY_RULES__",
"errors": null,
- "id": 19,
+ "id": 20,
"input_connections": {
"input": {
- "id": 15,
+ "id": 16,
"output_name": "out_file1"
}
},
@@ -1078,14 +1123,14 @@
"when": null,
"workflow_outputs": []
},
- "20": {
+ "21": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebed/2.31.1",
"errors": null,
- "id": 20,
+ "id": 21,
"input_connections": {
"input": {
- "id": 16,
+ "id": 17,
"output_name": "output"
}
},
@@ -1131,22 +1176,22 @@
}
]
},
- "21": {
+ "22": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bigwig_average/deeptools_bigwig_average/3.5.4+galaxy0",
"errors": null,
- "id": 21,
+ "id": 22,
"input_connections": {
"advancedOpt|binSize": {
"id": 3,
"output_name": "output"
},
"advancedOpt|scaleFactors": {
- "id": 18,
+ "id": 19,
"output_name": "text_param"
},
"bigwigs": {
- "id": 19,
+ "id": 20,
"output_name": "output"
}
},
@@ -1205,14 +1250,14 @@
}
]
},
- "22": {
+ "23": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_coveragebed/2.31.1+galaxy0",
"errors": null,
- "id": 22,
+ "id": 23,
"input_connections": {
"inputA": {
- "id": 20,
+ "id": 21,
"output_name": "output"
},
"reduce_or_iterate|inputB": {
@@ -1266,14 +1311,14 @@
"when": null,
"workflow_outputs": []
},
- "23": {
+ "24": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 23,
+ "id": 24,
"input_connections": {
"infile": {
- "id": 22,
+ "id": 23,
"output_name": "output"
}
},
@@ -1308,7 +1353,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1326,14 +1371,14 @@
}
]
},
- "24": {
+ "25": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1",
"errors": null,
- "id": 24,
+ "id": 25,
"input_connections": {
"input": {
- "id": 23,
+ "id": 24,
"output_name": "outfile"
}
},
@@ -1357,28 +1402,28 @@
"output_name": "out_file1"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1",
"tool_shed_repository": {
- "changeset_revision": "6595517c2dd8",
+ "changeset_revision": "aff5135563c6",
"name": "column_maker",
"owner": "devteam",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"avoid_scientific_notation\": true, \"error_handling\": {\"auto_col_types\": true, \"fail_on_non_existent_columns\": true, \"non_computable\": {\"action\": \"--fail-on-non-computable\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"ops\": {\"header_lines_select\": \"no\", \"__current_case__\": 0, \"expressions\": [{\"__index__\": 0, \"cond\": \"1000000/c1\", \"add_column\": {\"mode\": \"R\", \"__current_case__\": 2, \"pos\": \"1\"}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.0",
+ "tool_version": "2.1",
"type": "tool",
"uuid": "5f55e258-a4fe-4b51-ab9b-2a6f0f22d910",
"when": null,
"workflow_outputs": []
},
- "25": {
+ "26": {
"annotation": "",
"content_id": "cat1",
"errors": null,
- "id": 25,
+ "id": 26,
"input_connections": {
"input1": {
- "id": 23,
+ "id": 24,
"output_name": "outfile"
},
"queries_0|input2": {
@@ -1414,14 +1459,14 @@
"when": null,
"workflow_outputs": []
},
- "26": {
+ "27": {
"annotation": "",
"content_id": "param_value_from_file",
"errors": null,
- "id": 26,
+ "id": 27,
"input_connections": {
"input1": {
- "id": 24,
+ "id": 25,
"output_name": "out_file1"
}
},
@@ -1453,14 +1498,14 @@
"when": null,
"workflow_outputs": []
},
- "27": {
+ "28": {
"annotation": "",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"errors": null,
- "id": 27,
+ "id": 28,
"input_connections": {
"infile": {
- "id": 25,
+ "id": 26,
"output_name": "out_file1"
}
},
@@ -1486,7 +1531,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1498,22 +1543,22 @@
"when": null,
"workflow_outputs": []
},
- "28": {
+ "29": {
"annotation": "Isolate each bigwig do normalize not average",
"content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bigwig_average/deeptools_bigwig_average/3.5.4+galaxy0",
"errors": null,
- "id": 28,
+ "id": 29,
"input_connections": {
"advancedOpt|binSize": {
"id": 3,
"output_name": "output"
},
"advancedOpt|scaleFactors": {
- "id": 26,
+ "id": 27,
"output_name": "text_param"
},
"bigwigs": {
- "id": 19,
+ "id": 20,
"output_name": "output"
}
},
@@ -1572,11 +1617,11 @@
}
]
},
- "29": {
+ "30": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
- "id": 29,
+ "id": 30,
"input_connections": {
"results_0|software_cond|input": {
"id": 4,
@@ -1595,15 +1640,15 @@
"output_name": "metrics_file"
},
"results_4|software_cond|input": {
- "id": 11,
- "output_name": "output2"
+ "id": 14,
+ "output_name": "output"
},
"results_5|software_cond|input": {
"id": 13,
"output_name": "output_tabular"
},
"results_6|software_cond|input": {
- "id": 27,
+ "id": 28,
"output_name": "outfile"
}
},
@@ -1611,10 +1656,6 @@
"label": null,
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "plots",
"type": "input"
@@ -1622,6 +1663,10 @@
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -1635,15 +1680,15 @@
"output_name": "plots"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"bowtie2\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"custom_content\", \"__current_case__\": 32, \"plot_type\": \"bargraph\", \"section_name\": \"chrM\", \"title\": \"reads mapping on chrM\", \"description\": \"\", \"xlab\": \"\", \"ylab\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 3, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 4, \"software_cond\": {\"software\": \"custom_content\", \"__current_case__\": 32, \"plot_type\": \"linegraph\", \"section_name\": \"Fragment size\", \"title\": \"Fragment size distribution\", \"description\": \"\", \"xlab\": \"\", \"ylab\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 5, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 6, \"software_cond\": {\"software\": \"custom_content\", \"__current_case__\": 32, \"plot_type\": \"bargraph\", \"section_name\": \"Reads in peaks\", \"title\": \"Number of reads in peaks\", \"description\": \"Number of reads falling 500bp from a summit\", \"xlab\": \"\", \"ylab\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"bowtie2\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"custom_content\", \"__current_case__\": 32, \"plot_type\": \"bargraph\", \"section_name\": \"chrM\", \"title\": \"reads mapping on chrM\", \"description\": \"\", \"xlab\": \"\", \"ylab\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 3, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 4, \"software_cond\": {\"software\": \"custom_content\", \"__current_case__\": 32, \"plot_type\": \"linegraph\", \"section_name\": \"Fragment size\", \"title\": \"Fragment size distribution\", \"description\": \"\", \"xlab\": \"\", \"ylab\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 5, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 6, \"software_cond\": {\"software\": \"custom_content\", \"__current_case__\": 32, \"plot_type\": \"bargraph\", \"section_name\": \"Reads in peaks\", \"title\": \"Number of reads in peaks\", \"description\": \"Number of reads falling 500bp from a summit\", \"xlab\": \"\", \"ylab\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "112d720f-c747-4c92-985f-ebdb52086cc9",
"when": null,
@@ -1664,6 +1709,6 @@
"tags": [
"ATACseq"
],
- "uuid": "02785f0c-c445-4419-9f95-a202eaf6493a",
+ "uuid": "9debc3c9-ccbd-4ce6-a7de-80580e663cac",
"version": 1
}
\ No newline at end of file
diff --git a/workflows/epigenetics/average-bigwig-between-replicates/average-bigwig-between-replicates-tests.yml b/workflows/epigenetics/average-bigwig-between-replicates/average-bigwig-between-replicates-tests.yml
index 3f21209d2..7484600c3 100644
--- a/workflows/epigenetics/average-bigwig-between-replicates/average-bigwig-between-replicates-tests.yml
+++ b/workflows/epigenetics/average-bigwig-between-replicates/average-bigwig-between-replicates-tests.yml
@@ -23,8 +23,8 @@
bin_size: 50
outputs:
average_bigwigs:
- class: Collection
- collection_type: list
+ attributes:
+ collection_type: list
element_tests:
ATAC_HH19_PT:
asserts:
diff --git a/workflows/epigenetics/chipseq-pe/CHANGELOG.md b/workflows/epigenetics/chipseq-pe/CHANGELOG.md
index 902e9525a..b2ca81d15 100644
--- a/workflows/epigenetics/chipseq-pe/CHANGELOG.md
+++ b/workflows/epigenetics/chipseq-pe/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## [0.12] 2024-09-23
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0`
+
## [0.11] 2024-07-15
### Automatic update
diff --git a/workflows/epigenetics/chipseq-pe/chipseq-pe-tests.yml b/workflows/epigenetics/chipseq-pe/chipseq-pe-tests.yml
index 7817a8d66..30f746b1b 100644
--- a/workflows/epigenetics/chipseq-pe/chipseq-pe-tests.yml
+++ b/workflows/epigenetics/chipseq-pe/chipseq-pe-tests.yml
@@ -31,27 +31,11 @@
- that: "has_text"
text: Bowtie 2 / HiSAT2
'MultiQC on input dataset(s): Stats':
- element_tests:
- bowtie2:
- asserts:
- has_text:
- text: "46307\t46307\t1292"
- cutadapt:
- asserts:
- has_text:
- text: "4.9\t50000\t587\t550\t3693\t46307\t5100000"
- general_stats:
- asserts:
- has_text:
- text: "201.0\t0.0\t11\t98.68"
- macs:
- asserts:
- has_text:
- text: "11\t201.0\t41724.0\t41724.0\t1.0"
- sources:
- asserts:
- has_n_lines:
- n: 3
+ asserts:
+ has_line:
+ line: "Sample MACS2_mqc_generalstats_macs2_d MACS2_mqc_generalstats_macs2_treatment_redundant_rate MACS2_mqc_generalstats_macs2_peak_count Bowtie 2 / HiSAT2_mqc_generalstats_bowtie_2_hisat2_overall_alignment_rate Cutadapt_mqc_generalstats_cutadapt_percent_trimmed"
+ has_text_matching:
+ expression: "wt_H3K4me3\t201.0\t0.0\t11\t98.[0-9]*\t10.[0-9]*"
filtered BAM:
element_tests:
wt_H3K4me3:
diff --git a/workflows/epigenetics/chipseq-pe/chipseq-pe.ga b/workflows/epigenetics/chipseq-pe/chipseq-pe.ga
index ffeb5ecc6..d2790c119 100644
--- a/workflows/epigenetics/chipseq-pe/chipseq-pe.ga
+++ b/workflows/epigenetics/chipseq-pe/chipseq-pe.ga
@@ -10,7 +10,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "0.11",
+ "release": "0.12",
"name": "ChIPseq_PE",
"steps": {
"0": {
@@ -177,7 +177,7 @@
},
"6": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
"id": 6,
"input_connections": {
@@ -235,15 +235,15 @@
"output_name": "report"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "aa784cb3810d",
+ "changeset_revision": "5eb7e84243f2",
"name": "cutadapt",
"owner": "lparsons",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": false, \"no_match_adapter_wildcards\": true, \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"15\", \"minimum_length2\": null, \"maximum_length\": null, \"maximum_length2\": null, \"max_n\": null, \"max_expected_errors\": null, \"max_average_error_rate\": null, \"discard_casava\": false, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Please use: For R1: - For Nextera: CTGTCTCTTATACACATCTCCGAGCCCACGAGAC - For TrueSeq: GATCGGAAGAGCACACGTCTGAACTCCAGTCAC or AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC \", \"adapter\": {\"__class__\": \"ConnectedValue\"}}, \"single_noindels\": false}], \"front_adapters\": [], \"anywhere_adapters\": []}, \"r2\": {\"adapters2\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Please use: For R2: - For Nextera: CTGTCTCTTATACACATCTGACGCTGCCGACGA - For TruSeq: GATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT or AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT\", \"adapter\": {\"__class__\": \"ConnectedValue\"}}, \"single_noindels\": false}], \"front_adapters2\": [], \"anywhere_adapters2\": []}, \"pair_adapters\": false}, \"other_trimming_options\": {\"cut\": \"0\", \"cut2\": \"0\", \"quality_cutoff\": \"30\", \"quality_cutoff2\": \"\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"poly_a\": false, \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"shorten_options_r2\": {\"shorten_values_r2\": \"False\", \"__current_case__\": 1}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"strip_suffix\": \"\", \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "4.9+galaxy0",
+ "tool_version": "4.9+galaxy1",
"type": "tool",
"uuid": "c7846b4c-54fb-458e-982e-c0d8358a9f5d",
"when": null,
@@ -578,7 +578,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -645,7 +645,7 @@
},
"12": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 12,
"input_connections": {
@@ -666,10 +666,6 @@
"label": "MultiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "plots",
"type": "input"
@@ -677,6 +673,10 @@
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -690,15 +690,15 @@
"output_name": "plots"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"bowtie2\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"bowtie2\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "fb066848-43df-412a-9767-9613bac7d961",
"when": null,
diff --git a/workflows/epigenetics/chipseq-sr/CHANGELOG.md b/workflows/epigenetics/chipseq-sr/CHANGELOG.md
index 8e0ea5d7a..8bbc5bf4e 100644
--- a/workflows/epigenetics/chipseq-sr/CHANGELOG.md
+++ b/workflows/epigenetics/chipseq-sr/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## [0.12] 2024-09-23
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0`
+
## [0.11] 2024-07-15
### Automatic update
diff --git a/workflows/epigenetics/chipseq-sr/chipseq-sr-tests.yml b/workflows/epigenetics/chipseq-sr/chipseq-sr-tests.yml
index bb6ab5373..19c00d991 100644
--- a/workflows/epigenetics/chipseq-sr/chipseq-sr-tests.yml
+++ b/workflows/epigenetics/chipseq-sr/chipseq-sr-tests.yml
@@ -22,27 +22,11 @@
- that: "has_text"
text: Bowtie 2 / HiSAT2
'MultiQC on input dataset(s): Stats':
- element_tests:
- bowtie2:
- asserts:
- has_text:
- text: "49251\t49251\t805"
- cutadapt:
- asserts:
- has_text:
- text: "4.9\t50000\t587\t749\t49251"
- general_stats:
- asserts:
- has_text_matching:
- expression: "200.0\t0.0\t4\t98.[0-9]*\t4.612745098039215"
- macs:
- asserts:
- has_text:
- text: "4\t49.0\t44078.0\t44038.0\t1.0\t0.0\t200.0"
- sources:
- asserts:
- has_n_lines:
- n: 3
+ asserts:
+ has_line:
+ line: "Sample MACS2_mqc_generalstats_macs2_d MACS2_mqc_generalstats_macs2_treatment_redundant_rate MACS2_mqc_generalstats_macs2_peak_count Bowtie 2 / HiSAT2_mqc_generalstats_bowtie_2_hisat2_overall_alignment_rate Cutadapt_mqc_generalstats_cutadapt_percent_trimmed"
+ has_text_matching:
+ expression: "wt_H3K4me3\t200.0\t0.0\t4\t98.[0-9]*\t4.6[0-9]*"
filtered BAM:
element_tests:
wt_H3K4me3:
diff --git a/workflows/epigenetics/chipseq-sr/chipseq-sr.ga b/workflows/epigenetics/chipseq-sr/chipseq-sr.ga
index 4a8cdf57b..4c3b60c6c 100644
--- a/workflows/epigenetics/chipseq-sr/chipseq-sr.ga
+++ b/workflows/epigenetics/chipseq-sr/chipseq-sr.ga
@@ -10,7 +10,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "0.11",
+ "release": "0.12",
"name": "ChIPseq_SR",
"steps": {
"0": {
@@ -150,7 +150,7 @@
},
"5": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
"id": 5,
"input_connections": {
@@ -204,15 +204,15 @@
"output_name": "report"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "aa784cb3810d",
+ "changeset_revision": "5eb7e84243f2",
"name": "cutadapt",
"owner": "lparsons",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adapter_options\": {\"action\": \"trim\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": false, \"no_match_adapter_wildcards\": true, \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"15\", \"minimum_length2\": null, \"maximum_length\": null, \"maximum_length2\": null, \"max_n\": null, \"max_expected_errors\": null, \"max_average_error_rate\": null, \"discard_casava\": false, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Please use: For R1: - For Nextera: CTGTCTCTTATACACATCTCCGAGCCCACGAGAC - For TrueSeq: GATCGGAAGAGCACACGTCTGAACTCCAGTCAC or AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC\", \"adapter\": {\"__class__\": \"ConnectedValue\"}}, \"single_noindels\": false}], \"front_adapters\": [], \"anywhere_adapters\": []}}, \"other_trimming_options\": {\"cut\": \"0\", \"cut2\": \"0\", \"quality_cutoff\": \"30\", \"quality_cutoff2\": \"\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"poly_a\": false, \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"shorten_options_r2\": {\"shorten_values_r2\": \"False\", \"__current_case__\": 1}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"strip_suffix\": \"\", \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "4.9+galaxy0",
+ "tool_version": "4.9+galaxy1",
"type": "tool",
"uuid": "c7846b4c-54fb-458e-982e-c0d8358a9f5d",
"when": null,
@@ -547,7 +547,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -614,7 +614,7 @@
},
"11": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 11,
"input_connections": {
@@ -635,10 +635,6 @@
"label": "MultiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "plots",
"type": "input"
@@ -646,6 +642,10 @@
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -659,15 +659,15 @@
"output_name": "plots"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"bowtie2\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"bowtie2\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "fb066848-43df-412a-9767-9613bac7d961",
"when": null,
diff --git a/workflows/epigenetics/consensus-peaks/CHANGELOG.md b/workflows/epigenetics/consensus-peaks/CHANGELOG.md
index 11d873533..95a2698f7 100644
--- a/workflows/epigenetics/consensus-peaks/CHANGELOG.md
+++ b/workflows/epigenetics/consensus-peaks/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## [1.2] 2024-09-24
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3`
+- `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0`
+
## [1.1] 2024-05-27
### Automatic update
diff --git a/workflows/epigenetics/consensus-peaks/consensus-peaks-atac-cutandrun.ga b/workflows/epigenetics/consensus-peaks/consensus-peaks-atac-cutandrun.ga
index aea947871..7afaa8136 100644
--- a/workflows/epigenetics/consensus-peaks/consensus-peaks-atac-cutandrun.ga
+++ b/workflows/epigenetics/consensus-peaks/consensus-peaks-atac-cutandrun.ga
@@ -81,7 +81,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "1.1",
+ "release": "1.2",
"name": "Get Confident Peaks From ATAC or CUTandRUN replicates",
"steps": {
"0": {
@@ -239,7 +239,7 @@
},
"5": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"errors": null,
"id": 5,
"input_connections": {
@@ -268,15 +268,15 @@
"output_name": "outputcnt"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"tool_shed_repository": {
- "changeset_revision": "6be888be75f9",
+ "changeset_revision": "32dc5f781059",
"name": "samtools_view",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"all_reads\", \"__current_case__\": 0, \"output_options\": {\"reads_report_type\": \"count\", \"__current_case__\": 1}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.15.1+galaxy2",
+ "tool_version": "1.20+galaxy3",
"type": "tool",
"uuid": "9cff58b2-123e-42df-b562-3b2a4a553934",
"when": null,
@@ -886,7 +886,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_text_file_with_recurring_lines/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -989,7 +989,7 @@
},
"20": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"errors": null,
"id": 20,
"input_connections": {
@@ -1022,15 +1022,15 @@
"output_name": "outputsam"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"tool_shed_repository": {
- "changeset_revision": "6be888be75f9",
+ "changeset_revision": "32dc5f781059",
"name": "samtools_view",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"selected_reads\", \"__current_case__\": 1, \"filter_config\": {\"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cond_rg\": {\"select_rg\": \"no\", \"__current_case__\": 0}, \"quality\": null, \"library\": null, \"cigarcons\": null, \"inclusive_filter\": null, \"exclusive_filter\": null, \"exclusive_filter_all\": null, \"tag\": null, \"qname_file\": {\"__class__\": \"RuntimeValue\"}}, \"subsample_config\": {\"subsampling_mode\": {\"select_subsample\": \"target\", \"__current_case__\": 1, \"target\": {\"__class__\": \"ConnectedValue\"}, \"seed\": \"1\"}}, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"complementary_output\": false, \"adv_output\": {\"readtags\": [], \"collapsecigar\": false}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.15.1+galaxy2",
+ "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"selected_reads\", \"__current_case__\": 1, \"filter_config\": {\"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cond_rg\": {\"select_rg\": \"no\", \"__current_case__\": 0}, \"cond_expr\": {\"select_expr\": \"no\", \"__current_case__\": 0}, \"quality\": null, \"library\": null, \"cigarcons\": null, \"inclusive_filter\": null, \"exclusive_filter\": null, \"exclusive_filter_all\": null, \"tag\": null, \"qname_file\": {\"__class__\": \"RuntimeValue\"}}, \"subsample_config\": {\"subsampling_mode\": {\"select_subsample\": \"target\", \"__current_case__\": 1, \"target\": {\"__class__\": \"ConnectedValue\"}, \"seed\": \"1\"}}, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"complementary_output\": false, \"adv_output\": {\"readtags\": [], \"collapsecigar\": false}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.20+galaxy3",
"type": "tool",
"uuid": "36713e3f-6110-41f7-8df1-9a9966400fab",
"when": null,
@@ -1226,7 +1226,7 @@
},
"24": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 24,
"input_connections": {
@@ -1243,13 +1243,13 @@
"label": "multiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -1263,15 +1263,15 @@
"output_name": "stats"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "f7d74248-16e3-4020-8156-caae0e7682ef",
"when": null,
@@ -1403,7 +1403,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
diff --git a/workflows/epigenetics/consensus-peaks/consensus-peaks-chip-pe.ga b/workflows/epigenetics/consensus-peaks/consensus-peaks-chip-pe.ga
index 40fa85952..6a069cc8e 100644
--- a/workflows/epigenetics/consensus-peaks/consensus-peaks-chip-pe.ga
+++ b/workflows/epigenetics/consensus-peaks/consensus-peaks-chip-pe.ga
@@ -81,7 +81,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "1.1",
+ "release": "1.2",
"name": "Get Confident Peaks From ChIP_PE replicates",
"steps": {
"0": {
@@ -194,7 +194,7 @@
},
"4": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"errors": null,
"id": 4,
"input_connections": {
@@ -223,15 +223,15 @@
"output_name": "outputcnt"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"tool_shed_repository": {
- "changeset_revision": "6be888be75f9",
+ "changeset_revision": "32dc5f781059",
"name": "samtools_view",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"all_reads\", \"__current_case__\": 0, \"output_options\": {\"reads_report_type\": \"count\", \"__current_case__\": 1}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.15.1+galaxy2",
+ "tool_version": "1.20+galaxy3",
"type": "tool",
"uuid": "a864ff43-af08-436a-aa78-54491ff0cce6",
"when": null,
@@ -841,7 +841,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_text_file_with_recurring_lines/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -944,7 +944,7 @@
},
"19": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"errors": null,
"id": 19,
"input_connections": {
@@ -977,15 +977,15 @@
"output_name": "outputsam"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"tool_shed_repository": {
- "changeset_revision": "6be888be75f9",
+ "changeset_revision": "32dc5f781059",
"name": "samtools_view",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"selected_reads\", \"__current_case__\": 1, \"filter_config\": {\"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cond_rg\": {\"select_rg\": \"no\", \"__current_case__\": 0}, \"quality\": null, \"library\": null, \"cigarcons\": null, \"inclusive_filter\": null, \"exclusive_filter\": null, \"exclusive_filter_all\": null, \"tag\": null, \"qname_file\": {\"__class__\": \"RuntimeValue\"}}, \"subsample_config\": {\"subsampling_mode\": {\"select_subsample\": \"target\", \"__current_case__\": 1, \"target\": {\"__class__\": \"ConnectedValue\"}, \"seed\": \"1\"}}, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"complementary_output\": false, \"adv_output\": {\"readtags\": [], \"collapsecigar\": false}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.15.1+galaxy2",
+ "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"selected_reads\", \"__current_case__\": 1, \"filter_config\": {\"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cond_rg\": {\"select_rg\": \"no\", \"__current_case__\": 0}, \"cond_expr\": {\"select_expr\": \"no\", \"__current_case__\": 0}, \"quality\": null, \"library\": null, \"cigarcons\": null, \"inclusive_filter\": null, \"exclusive_filter\": null, \"exclusive_filter_all\": null, \"tag\": null, \"qname_file\": {\"__class__\": \"RuntimeValue\"}}, \"subsample_config\": {\"subsampling_mode\": {\"select_subsample\": \"target\", \"__current_case__\": 1, \"target\": {\"__class__\": \"ConnectedValue\"}, \"seed\": \"1\"}}, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"complementary_output\": false, \"adv_output\": {\"readtags\": [], \"collapsecigar\": false}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.20+galaxy3",
"type": "tool",
"uuid": "ae46e826-d985-4437-abae-152b6877eea7",
"when": null,
@@ -1136,7 +1136,7 @@
},
"22": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 22,
"input_connections": {
@@ -1153,13 +1153,13 @@
"label": "multiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -1173,15 +1173,15 @@
"output_name": "stats"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "f7d74248-16e3-4020-8156-caae0e7682ef",
"when": null,
@@ -1313,7 +1313,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
diff --git a/workflows/epigenetics/consensus-peaks/consensus-peaks-chip-sr.ga b/workflows/epigenetics/consensus-peaks/consensus-peaks-chip-sr.ga
index 05c3c38a5..857414f3b 100644
--- a/workflows/epigenetics/consensus-peaks/consensus-peaks-chip-sr.ga
+++ b/workflows/epigenetics/consensus-peaks/consensus-peaks-chip-sr.ga
@@ -81,7 +81,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "1.1",
+ "release": "1.2",
"name": "Get Confident Peaks From ChIP_SR replicates",
"steps": {
"0": {
@@ -194,7 +194,7 @@
},
"4": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"errors": null,
"id": 4,
"input_connections": {
@@ -223,15 +223,15 @@
"output_name": "outputcnt"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"tool_shed_repository": {
- "changeset_revision": "6be888be75f9",
+ "changeset_revision": "32dc5f781059",
"name": "samtools_view",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"all_reads\", \"__current_case__\": 0, \"output_options\": {\"reads_report_type\": \"count\", \"__current_case__\": 1}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.15.1+galaxy2",
+ "tool_version": "1.20+galaxy3",
"type": "tool",
"uuid": "a864ff43-af08-436a-aa78-54491ff0cce6",
"when": null,
@@ -841,7 +841,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_text_file_with_recurring_lines/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -944,7 +944,7 @@
},
"19": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"errors": null,
"id": 19,
"input_connections": {
@@ -977,15 +977,15 @@
"output_name": "outputsam"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.20+galaxy3",
"tool_shed_repository": {
- "changeset_revision": "6be888be75f9",
+ "changeset_revision": "32dc5f781059",
"name": "samtools_view",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"selected_reads\", \"__current_case__\": 1, \"filter_config\": {\"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cond_rg\": {\"select_rg\": \"no\", \"__current_case__\": 0}, \"quality\": null, \"library\": null, \"cigarcons\": null, \"inclusive_filter\": null, \"exclusive_filter\": null, \"exclusive_filter_all\": null, \"tag\": null, \"qname_file\": {\"__class__\": \"RuntimeValue\"}}, \"subsample_config\": {\"subsampling_mode\": {\"select_subsample\": \"target\", \"__current_case__\": 1, \"target\": {\"__class__\": \"ConnectedValue\"}, \"seed\": \"1\"}}, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"complementary_output\": false, \"adv_output\": {\"readtags\": [], \"collapsecigar\": false}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.15.1+galaxy2",
+ "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"selected_reads\", \"__current_case__\": 1, \"filter_config\": {\"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cond_rg\": {\"select_rg\": \"no\", \"__current_case__\": 0}, \"cond_expr\": {\"select_expr\": \"no\", \"__current_case__\": 0}, \"quality\": null, \"library\": null, \"cigarcons\": null, \"inclusive_filter\": null, \"exclusive_filter\": null, \"exclusive_filter_all\": null, \"tag\": null, \"qname_file\": {\"__class__\": \"RuntimeValue\"}}, \"subsample_config\": {\"subsampling_mode\": {\"select_subsample\": \"target\", \"__current_case__\": 1, \"target\": {\"__class__\": \"ConnectedValue\"}, \"seed\": \"1\"}}, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"complementary_output\": false, \"adv_output\": {\"readtags\": [], \"collapsecigar\": false}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.20+galaxy3",
"type": "tool",
"uuid": "ae46e826-d985-4437-abae-152b6877eea7",
"when": null,
@@ -1136,7 +1136,7 @@
},
"22": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 22,
"input_connections": {
@@ -1153,13 +1153,13 @@
"label": "multiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -1173,15 +1173,15 @@
"output_name": "stats"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "f7d74248-16e3-4020-8156-caae0e7682ef",
"when": null,
@@ -1313,7 +1313,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
diff --git a/workflows/epigenetics/cutandrun/CHANGELOG.md b/workflows/epigenetics/cutandrun/CHANGELOG.md
index 99a77c9c8..90d5cbc5f 100644
--- a/workflows/epigenetics/cutandrun/CHANGELOG.md
+++ b/workflows/epigenetics/cutandrun/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## [0.13] 2024-09-23
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0`
+
## [0.12] 2024-07-15
### Automatic update
diff --git a/workflows/epigenetics/cutandrun/cutandrun-tests.yml b/workflows/epigenetics/cutandrun/cutandrun-tests.yml
index 8f2ebcecb..3e7e189de 100644
--- a/workflows/epigenetics/cutandrun/cutandrun-tests.yml
+++ b/workflows/epigenetics/cutandrun/cutandrun-tests.yml
@@ -46,13 +46,15 @@
MACS2 summits:
element_tests:
Rep1:
- has_n_lines:
- n: 1856
+ asserts:
+ has_n_lines:
+ n: 5870
MACS2 narrowPeak:
element_tests:
Rep1:
- has_n_lines:
- n: 1856
+ asserts:
+ has_n_lines:
+ n: 5870
MACS2 peaks xls:
element_tests:
Rep1:
@@ -109,13 +111,15 @@
MACS2 summits:
element_tests:
Rep1:
- has_n_lines:
- n: 3261
+ asserts:
+ has_n_lines:
+ n: 3231
MACS2 narrowPeak:
element_tests:
Rep1:
- has_n_lines:
- n: 3261
+ asserts:
+ has_n_lines:
+ n: 3231
MACS2 peaks xls:
element_tests:
Rep1:
diff --git a/workflows/epigenetics/cutandrun/cutandrun.ga b/workflows/epigenetics/cutandrun/cutandrun.ga
index 570a20325..5f8a1fcb6 100644
--- a/workflows/epigenetics/cutandrun/cutandrun.ga
+++ b/workflows/epigenetics/cutandrun/cutandrun.ga
@@ -10,7 +10,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "0.12",
+ "release": "0.13",
"name": "CUTandRUN",
"steps": {
"0": {
@@ -177,7 +177,7 @@
},
"6": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
"id": 6,
"input_connections": {
@@ -235,15 +235,15 @@
"output_name": "report"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "aa784cb3810d",
+ "changeset_revision": "5eb7e84243f2",
"name": "cutadapt",
"owner": "lparsons",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": false, \"no_match_adapter_wildcards\": true, \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"15\", \"minimum_length2\": null, \"maximum_length\": null, \"maximum_length2\": null, \"max_n\": null, \"max_expected_errors\": null, \"max_average_error_rate\": null, \"discard_casava\": false, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Please use: For R1: - For TrueSeq (CUT and RUN): GATCGGAAGAGCACACGTCTGAACTCCAGTCAC or AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC - For Nextera (CUT and TAG): CTGTCTCTTATACACATCTCCGAGCCCACGAGAC \", \"adapter\": {\"__class__\": \"ConnectedValue\"}}, \"single_noindels\": false}], \"front_adapters\": [], \"anywhere_adapters\": []}, \"r2\": {\"adapters2\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Please use: For R2: - For TruSeq (CUT and RUN): GATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT or AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT - For Nextera (CUT and TAG): CTGTCTCTTATACACATCTGACGCTGCCGACGA\", \"adapter\": {\"__class__\": \"ConnectedValue\"}}, \"single_noindels\": false}], \"front_adapters2\": [], \"anywhere_adapters2\": []}, \"pair_adapters\": false}, \"other_trimming_options\": {\"cut\": \"0\", \"cut2\": \"0\", \"quality_cutoff\": \"30\", \"quality_cutoff2\": \"\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"poly_a\": false, \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"shorten_options_r2\": {\"shorten_values_r2\": \"False\", \"__current_case__\": 1}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"strip_suffix\": \"\", \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "4.9+galaxy0",
+ "tool_version": "4.9+galaxy1",
"type": "tool",
"uuid": "774b0604-628f-46a1-9088-a59d082e5317",
"when": null,
@@ -698,7 +698,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -765,7 +765,7 @@
},
"14": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 14,
"input_connections": {
@@ -790,10 +790,6 @@
"label": "MultiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "plots",
"type": "input"
@@ -801,6 +797,10 @@
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -814,15 +814,15 @@
"output_name": "plots"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"bowtie2\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 3, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"bowtie2\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 3, \"software_cond\": {\"software\": \"macs2\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "0edf5e04-cc38-414c-9b57-117e919c435b",
"when": null,
diff --git a/workflows/epigenetics/hic-hicup-cooler/chic-fastq-to-cool-hicup-cooler-tests.yml b/workflows/epigenetics/hic-hicup-cooler/chic-fastq-to-cool-hicup-cooler-tests.yml
index 173062097..27a590032 100644
--- a/workflows/epigenetics/hic-hicup-cooler/chic-fastq-to-cool-hicup-cooler-tests.yml
+++ b/workflows/epigenetics/hic-hicup-cooler/chic-fastq-to-cool-hicup-cooler-tests.yml
@@ -81,7 +81,6 @@
value: 47830
delta: 4000
plot with pyGenomeTracks:
- class: File
file: test-data/plot_chic.png
compare: sim_size
delta: 1500
diff --git a/workflows/epigenetics/hic-hicup-cooler/hic-fastq-to-cool-hicup-cooler-tests.yml b/workflows/epigenetics/hic-hicup-cooler/hic-fastq-to-cool-hicup-cooler-tests.yml
index 95a438d6b..186fbb60f 100644
--- a/workflows/epigenetics/hic-hicup-cooler/hic-fastq-to-cool-hicup-cooler-tests.yml
+++ b/workflows/epigenetics/hic-hicup-cooler/hic-fastq-to-cool-hicup-cooler-tests.yml
@@ -79,7 +79,6 @@
value: 149349
delta: 10000
plot with pyGenomeTracks:
- class: File
file: test-data/plot_hic.png
compare: sim_size
delta: 1500
diff --git a/workflows/genome-assembly/bacterial-genome-assembly/CHANGELOG.md b/workflows/genome-assembly/bacterial-genome-assembly/CHANGELOG.md
index 93fd2a18b..d04f8127b 100644
--- a/workflows/genome-assembly/bacterial-genome-assembly/CHANGELOG.md
+++ b/workflows/genome-assembly/bacterial-genome-assembly/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [1.1.3] 2024-09-30
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0`
+- `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0`
+
+## [1.1.2] 2024-09-19
+
+### Manual update
+
+- Updated the tool versions manually in the ToolDistillator parameters
+
## [1.1.1] 2024-07-08
### Automatic update
diff --git a/workflows/genome-assembly/bacterial-genome-assembly/bacterial_genome_assembly-tests.yml b/workflows/genome-assembly/bacterial-genome-assembly/bacterial_genome_assembly-tests.yml
index b184f0a50..8f9012b89 100644
--- a/workflows/genome-assembly/bacterial-genome-assembly/bacterial_genome_assembly-tests.yml
+++ b/workflows/genome-assembly/bacterial-genome-assembly/bacterial_genome_assembly-tests.yml
@@ -10,41 +10,41 @@
filetype: fastqsanger.gz
outputs:
shovill_contigs_graph:
- assert:
- has_n_lines:
- n: 18
+ asserts:
+ has_text:
+ text: "KC:i"
shovill_logfile:
- assert:
+ asserts:
has_text:
text: "[shovill] Done."
shovill_contigs_fasta:
- assert:
+ asserts:
has_text:
text: ">contig00001"
quast_report_tabular:
- assert:
+ asserts:
has_n_columns:
n: 2
has_text:
text: "shovill_contigs_fasta"
quast_log:
- assert:
+ asserts:
has_text:
text: "Thank you for using QUAST!"
refseqmasher_report_tabular:
- assert:
+ asserts:
has_text:
text: "Enterococcus faecalis"
has_n_columns:
n: 21
bandage_contig_graph_stats:
- assert:
+ asserts:
has_text:
text: "Total length orphaned nodes (bp):"
has_n_columns:
n: 2
tooldistillator_summarize:
- assert:
+ asserts:
has_text:
text: "\"Assembly\": \"shovill_contigs_fasta\""
has_text:
diff --git a/workflows/genome-assembly/bacterial-genome-assembly/bacterial_genome_assembly.ga b/workflows/genome-assembly/bacterial-genome-assembly/bacterial_genome_assembly.ga
index f75417bac..162b4d1b5 100644
--- a/workflows/genome-assembly/bacterial-genome-assembly/bacterial_genome_assembly.ga
+++ b/workflows/genome-assembly/bacterial-genome-assembly/bacterial_genome_assembly.ga
@@ -26,7 +26,7 @@
}
],
"format-version": "0.1",
- "release": "1.1.1",
+ "release": "1.1.3",
"license": "GPL-3.0-or-later",
"name": "Bacterial Genome Assembly using Shovill",
"steps": {
@@ -557,7 +557,7 @@
},
"7": {
"annotation": "ToolDistillator extracts results from tools and creates a JSON file for each tool",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0",
"errors": null,
"id": 7,
"input_connections": {
@@ -623,15 +623,15 @@
"output_name": "output_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "a7387ce2a8ca",
+ "changeset_revision": "8d6686664021",
"name": "tooldistillator",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"log\": false, \"tool_section\": {\"tools\": [{\"__index__\": 0, \"select_tool\": {\"tool_list\": \"shovill\", \"__current_case__\": 19, \"input\": {\"__class__\": \"ConnectedValue\"}, \"contig_graph_path\": {\"__class__\": \"ConnectedValue\"}, \"bam_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.1.0\", \"reference_database_version\": null}}, {\"__index__\": 1, \"select_tool\": {\"tool_list\": \"quast\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}, \"quast_html_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"5.2.0\", \"reference_database_version\": null}}, {\"__index__\": 2, \"select_tool\": {\"tool_list\": \"refseqmasher\", \"__current_case__\": 18, \"input\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"0.1.2\", \"reference_database_version\": null}}, {\"__index__\": 3, \"select_tool\": {\"tool_list\": \"bandage\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}, \"bandage_plot_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"0.8.1\", \"reference_database_version\": null}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.9+galaxy0",
+ "tool_state": "{\"log\": false, \"tool_section\": {\"tools\": [{\"__index__\": 0, \"select_tool\": {\"tool_list\": \"shovill\", \"__current_case__\": 19, \"input\": {\"__class__\": \"ConnectedValue\"}, \"contig_graph_path\": {\"__class__\": \"ConnectedValue\"}, \"bam_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.1.0\", \"reference_database_version\": null}}, {\"__index__\": 1, \"select_tool\": {\"tool_list\": \"quast\", \"__current_case__\": 16, \"input\": {\"__class__\": \"ConnectedValue\"}, \"quast_html_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"5.2.0\", \"reference_database_version\": null}}, {\"__index__\": 2, \"select_tool\": {\"tool_list\": \"refseqmasher\", \"__current_case__\": 18, \"input\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"0.1.2\", \"reference_database_version\": null}}, {\"__index__\": 3, \"select_tool\": {\"tool_list\": \"bandage\", \"__current_case__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}, \"bandage_plot_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"2022.09\", \"reference_database_version\": null}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "0.9.1+galaxy0",
"type": "tool",
"uuid": "b6156c8e-5048-41e3-90d9-f9302734c3d1",
"when": null,
@@ -645,7 +645,7 @@
},
"8": {
"annotation": "ToolDistillator summarize groups all JSON file into a unique JSON file",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0",
"errors": null,
"id": 8,
"input_connections": {
@@ -683,15 +683,15 @@
"output_name": "summary_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "def7a82d23e1",
+ "changeset_revision": "f3233d395549",
"name": "tooldistillator_summarize",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"summarize_data\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.9+galaxy0",
+ "tool_version": "0.9.1+galaxy0",
"type": "tool",
"uuid": "3bbe0eba-b6bb-4d43-ab57-2b899b8112ae",
"when": null,
diff --git a/workflows/genome-assembly/quality-and-contamination-control/CHANGELOG.md b/workflows/genome-assembly/quality-and-contamination-control/CHANGELOG.md
index 41a1d7812..a19c83e30 100644
--- a/workflows/genome-assembly/quality-and-contamination-control/CHANGELOG.md
+++ b/workflows/genome-assembly/quality-and-contamination-control/CHANGELOG.md
@@ -1,5 +1,27 @@
# Changelog
+## [1.1.3] 2024-09-30
+
+### Manual update
+
+- Updated Recentrifuge version manually in the ToolDistillator parameters
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.14.1+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.15.0+galaxy0`
+- `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0`
+- `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0`
+
+## [1.1.2] 2024-08-05
+
+### Manual update
+
+- Updated the tool versions manually in the ToolDistillator parameters
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/3.0+galaxy0`
+- `toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.14.0+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.14.1+galaxy0`
+
## [1.1.1] 2024-07-08
### Automatic update
diff --git a/workflows/genome-assembly/quality-and-contamination-control/quality_and_contamination_control-tests.yml b/workflows/genome-assembly/quality-and-contamination-control/quality_and_contamination_control-tests.yml
index b5768ad0b..adbe029d5 100644
--- a/workflows/genome-assembly/quality-and-contamination-control/quality_and_contamination_control-tests.yml
+++ b/workflows/genome-assembly/quality-and-contamination-control/quality_and_contamination_control-tests.yml
@@ -12,52 +12,52 @@
Select a NCBI taxonomy database: "2022-03-08"
outputs:
fastp_report_json:
- assert:
+ asserts:
has_text:
text: "fastp_version"
has_text:
text: "read2_before_filtering"
kraken_report_tabular:
- assert:
+ asserts:
has_text:
text: "Enterococcus avium"
- has_n_column:
+ has_n_columns:
n: 6
kraken_report_reads:
- assert:
+ asserts:
has_text:
text: "M07044:90:000000000-JRJWP:1:1119:23974:4461"
- has_n_column:
+ has_n_columns:
n: 5
bracken_kraken_report:
- assert:
+ asserts:
has_text:
text: "Enterococcus gallinarum"
- has_n_column:
+ has_n_columns:
n: 6
bracken_report_tsv:
- assert:
+ asserts:
has_text:
text: "Escherichia coli"
- has_n_column:
+ has_n_columns:
n: 7
recentrifuge_data_tabular:
- assert:
+ asserts:
has_text:
text: "Enterococcus faecalis"
- has_n_column:
+ has_n_columns:
n: 6
recentrifuge_stats_tabular:
- assert:
+ asserts:
has_text:
text: "input_dir/kraken_report_reads"
- has_n_column:
+ has_n_columns:
n: 2
tooldistillator_summarize:
- assert:
- has_text:
+ asserts:
+ - that: has_text
text: "fastp_report"
- has_text:
+ - that: has_text
text: "ncbi_taxonomic_id"
- has_text:
+ - that: has_text
text: "kraken2_report"
diff --git a/workflows/genome-assembly/quality-and-contamination-control/quality_and_contamination_control.ga b/workflows/genome-assembly/quality-and-contamination-control/quality_and_contamination_control.ga
index 8d3ac74fb..6e8b6ea7e 100644
--- a/workflows/genome-assembly/quality-and-contamination-control/quality_and_contamination_control.ga
+++ b/workflows/genome-assembly/quality-and-contamination-control/quality_and_contamination_control.ga
@@ -27,7 +27,7 @@
],
"format-version": "0.1",
"license": "GPL-3.0-or-later",
- "release": "1.1.1",
+ "release": "1.1.3",
"name": "Quality and Contamination Control For Genome Assembly",
"steps": {
"0": {
@@ -131,7 +131,7 @@
"top": 454.91066885428484
},
"tool_id": null,
- "tool_state": "{\"default\": \"ncbi-2015-10-05\", \"restrictions\": [\"ncbi-2015-10-05\"], \"parameter_type\": \"text\", \"optional\": true}",
+ "tool_state": "{\"default\": \"ncbi-2015-10-05\", \"restrictions\": [\"ncbi-2015-10-05\", \"2020-12-03\", \"2022-03-08\", \"2024-06-05\"], \"parameter_type\": \"text\", \"optional\": true}",
"tool_version": null,
"type": "parameter_input",
"uuid": "daac0634-bcf4-4fdd-bcd2-67247f5afdd0",
@@ -140,7 +140,7 @@
},
"4": {
"annotation": "fastp_triming, quality analaysis and read cleaning",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy1",
"errors": null,
"id": 4,
"input_connections": {
@@ -259,15 +259,15 @@
"output_name": "report_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "c59d48774d03",
+ "changeset_revision": "d60c3f704da0",
"name": "fastp",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": null, \"umi_len\": null, \"umi_prefix\": null}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"paired\", \"__current_case__\": 1, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"in2\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": null, \"adapter_sequence2\": null}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.23.4+galaxy0",
+ "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": null, \"umi_len\": null, \"umi_prefix\": null}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"paired\", \"__current_case__\": 1, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"in2\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": null, \"adapter_sequence2\": null, \"detect_adapter_for_pe\": false}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "0.23.4+galaxy1",
"type": "tool",
"uuid": "7f405009-2491-4633-b4e1-ca0fdbd8360d",
"when": null,
@@ -396,7 +396,7 @@
},
"6": {
"annotation": "bracken_abundance_estimation",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/3.0+galaxy0",
"errors": null,
"id": 6,
"input_connections": {
@@ -456,15 +456,15 @@
"output_name": "report"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/3.0+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "1d4bd12f01cf",
+ "changeset_revision": "0c7b6eb7e752",
"name": "bracken",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_distr\": {\"__class__\": \"ConnectedValue\"}, \"level\": \"S\", \"logfile_output\": false, \"out_report\": true, \"threshold\": \"10\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.9+galaxy0",
+ "tool_version": "3.0+galaxy0",
"type": "tool",
"uuid": "e088cdc6-d79b-453c-8787-6d4b7004312a",
"when": null,
@@ -483,7 +483,7 @@
},
"7": {
"annotation": "recentrifuge_taxonomy_visualization",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.14.0+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.15.0+galaxy0",
"errors": null,
"id": 7,
"input_connections": {
@@ -584,15 +584,15 @@
"output_name": "stat_tsv"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.14.0+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.15.0+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "76bf12b928f4",
+ "changeset_revision": "591175c0f051",
"name": "recentrifuge",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"advanced_option\": {\"controls\": \"0\", \"scoring\": null, \"minscore_value\": \"0\", \"mintaxa\": \"0\", \"exclude_taxa_name\": null, \"include_taxa_name\": null, \"avoidcross\": false}, \"database\": {\"database_name\": {\"__class__\": \"ConnectedValue\"}}, \"file_type\": {\"filetype\": \"kraken\", \"__current_case__\": 3}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"more_advanced_option\": {\"ctrlminscore\": \"0\", \"ctrlmintaxa\": \"0\", \"summary\": \"ADD\", \"takeoutroot\": false, \"nokollapse\": false, \"strain\": true, \"sequential\": false}, \"output_option\": {\"extra\": \"TSV\", \"nohtml\": false, \"no_logfile\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.14.0+galaxy0",
+ "tool_version": "1.15.0+galaxy0",
"type": "tool",
"uuid": "2db5d20e-62c7-43ad-b21f-e9992c77faa1",
"when": null,
@@ -621,7 +621,7 @@
},
"8": {
"annotation": "ToolDistillator extracts results from tools and creates a JSON file for each tool",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0",
"errors": null,
"id": 8,
"input_connections": {
@@ -711,15 +711,15 @@
"output_name": "output_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator/tooldistillator/0.9.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "a7387ce2a8ca",
+ "changeset_revision": "8d6686664021",
"name": "tooldistillator",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"log\": false, \"tool_section\": {\"tools\": [{\"__index__\": 0, \"select_tool\": {\"tool_list\": \"fastp\", \"__current_case__\": 6, \"input\": {\"__class__\": \"ConnectedValue\"}, \"trimmed_forward_R1_path\": {\"__class__\": \"ConnectedValue\"}, \"trimmed_reverse_R2_path\": {\"__class__\": \"ConnectedValue\"}, \"html_report_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"0.23.2\", \"reference_database_version\": null}}, {\"__index__\": 1, \"select_tool\": {\"tool_list\": \"kraken2\", \"__current_case__\": 12, \"input\": {\"__class__\": \"ConnectedValue\"}, \"seq_classification_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"2.1.1\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"select_tool\": {\"tool_list\": \"bracken\", \"__current_case__\": 4, \"input\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"2.8\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}, \"kraken_report_path\": {\"__class__\": \"ConnectedValue\"}, \"threshold\": null, \"read_len\": \"100\", \"level\": \"S\"}}, {\"__index__\": 3, \"select_tool\": {\"tool_list\": \"recentrifuge\", \"__current_case__\": 17, \"input\": {\"__class__\": \"ConnectedValue\"}, \"rcf_stat_path\": {\"__class__\": \"ConnectedValue\"}, \"rcf_html_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.12.1\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.9+galaxy0",
+ "tool_state": "{\"log\": false, \"tool_section\": {\"tools\": [{\"__index__\": 0, \"select_tool\": {\"tool_list\": \"fastp\", \"__current_case__\": 6, \"input\": {\"__class__\": \"ConnectedValue\"}, \"trimmed_forward_R1_path\": {\"__class__\": \"ConnectedValue\"}, \"trimmed_reverse_R2_path\": {\"__class__\": \"ConnectedValue\"}, \"html_report_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"0.23.4\", \"reference_database_version\": null}}, {\"__index__\": 1, \"select_tool\": {\"tool_list\": \"kraken2\", \"__current_case__\": 12, \"input\": {\"__class__\": \"ConnectedValue\"}, \"seq_classification_file_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"2.1.3\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"select_tool\": {\"tool_list\": \"bracken\", \"__current_case__\": 4, \"input\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"3.0\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}, \"kraken_report_path\": {\"__class__\": \"ConnectedValue\"}, \"threshold\": null, \"read_len\": \"100\", \"level\": \"S\"}}, {\"__index__\": 3, \"select_tool\": {\"tool_list\": \"recentrifuge\", \"__current_case__\": 17, \"input\": {\"__class__\": \"ConnectedValue\"}, \"rcf_stat_path\": {\"__class__\": \"ConnectedValue\"}, \"rcf_html_path\": {\"__class__\": \"ConnectedValue\"}, \"analysis_software_version\": \"1.15.0\", \"reference_database_version\": {\"__class__\": \"ConnectedValue\"}}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "0.9.1+galaxy0",
"type": "tool",
"uuid": "b88b0ffe-f660-43ea-b00a-40ca0087f83f",
"when": null,
@@ -733,7 +733,7 @@
},
"9": {
"annotation": "ToolDistillator summarize groups all JSON file into a unique JSON file",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0",
"errors": null,
"id": 9,
"input_connections": {
@@ -771,15 +771,15 @@
"output_name": "summary_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tooldistillator_summarize/tooldistillator_summarize/0.9.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "def7a82d23e1",
+ "changeset_revision": "f3233d395549",
"name": "tooldistillator_summarize",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"summarize_data\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.9+galaxy0",
+ "tool_version": "0.9.1+galaxy0",
"type": "tool",
"uuid": "fbc8d552-c0b1-426c-b26f-8bfe8371b05e",
"when": null,
diff --git a/workflows/proteomics/clinicalmp/clinicalmp-quantitation/.dockstore.yml b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/.dockstore.yml
new file mode 100644
index 000000000..697c2b99f
--- /dev/null
+++ b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/.dockstore.yml
@@ -0,0 +1,11 @@
+version: 1.2
+workflows:
+- name: main
+ subclass: Galaxy
+ publish: true
+ primaryDescriptorPath: /iwc-clinicalmp-quantitation.ga
+ testParameterFiles:
+ - /iwc-clinicalmp-quantitation-tests.yml
+ authors:
+ - name: GalaxyP
+ url: https://galaxyp.org/
diff --git a/workflows/proteomics/clinicalmp/clinicalmp-quantitation/README.md b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/README.md
new file mode 100644
index 000000000..76677fcf2
--- /dev/null
+++ b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/README.md
@@ -0,0 +1,25 @@
+# Clinical Metaproteomics 4: Quantitation
+
+Quantitative proteomics is crucial for many important purposes. It allows researchers to measure and compare the levels of proteins or peptides in biological samples. This provides valuable insights into biomarker discovery, comparative analysis, and differential expression studies. Quantitative proteomics also helps in understanding the functional roles of proteins, the composition of protein complexes, and the effects of drugs on protein expression in pharmacological studies. Additionally, it serves as a quality control measure by validating initial protein identifications and providing data normalization for increased accuracy. The quantitative data are essential for hypothesis testing, and systems biology, and have clinical relevance in areas such as disease diagnosis, prognosis, and therapeutic decision-making. In summary, the quantitation workflow in proteomics is essential for understanding the complexities of protein expression and regulation, and it facilitates a wide range of biological and clinical applications.
+
+In this current workflow, we perform Quantification using the MaxQuant tool. A GTN has been developed for this workflow.
+https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-4-quantitation/tutorial.html
+
+## Inputs dataset
+
+- `RAW MSMS datasets` in RAW dataset collection
+- `Quantitation_Database_for_MaxQuant` in Fasta (protein sequences for database searching)
+- `Experimental-Design Discovery MaxQuant` in Tabular Format
+
+## Inputs values
+
+For MaxQuant
+- Peptide Length
+- Variable modifications
+- Labeled element
+
+
+## Processing
+
+- extract microbial proteins and peptides using Select and Cut
+- Grouping duplicates using the Group tool
diff --git a/workflows/proteomics/clinicalmp/clinicalmp-quantitation/iwc-clinicalmp-quantitation-tests.yml b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/iwc-clinicalmp-quantitation-tests.yml
new file mode 100644
index 000000000..53fbca031
--- /dev/null
+++ b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/iwc-clinicalmp-quantitation-tests.yml
@@ -0,0 +1,31 @@
+- doc: Test outline for iwc-clinicalmp-quantitation
+ job:
+ Quantitation_Database-For-MaxQuant:
+ class: File
+ location: https://zenodo.org/records/10720030/files/Quantitation_Database_for_MaxQuant.fasta
+ filetype: fasta
+ Experimental-Design Discovery MaxQuant:
+ class: File
+ location: https://zenodo.org/records/10720030/files/Experimental-Design_Discovery_MaxQuant.tabular
+ filetype: tabular
+ Input Raw-files:
+ class: Collection
+ collection_type: list
+ elements:
+ - class: File
+ identifier: PTRC_Skubitz_Plex2_F15_9Aug19_Rage_Rep-19-06-08.raw
+ location: https://zenodo.org/records/10720030/files/PTRC_Skubitz_Plex2_F15_9Aug19_Rage_Rep-19-06-08.raw
+ - class: File
+ identifier: PTRC_Skubitz_Plex2_F13_9Aug19_Rage_Rep-19-06-08.raw
+ location: https://zenodo.org/records/10720030/files/PTRC_Skubitz_Plex2_F13_9Aug19_Rage_Rep-19-06-08.raw
+ - class: File
+ identifier: PTRC_Skubitz_Plex2_F11_9Aug19_Rage_Rep-19-06-08.raw
+ location: https://zenodo.org/records/10720030/files/PTRC_Skubitz_Plex2_F11_9Aug19_Rage_Rep-19-06-08.raw
+ - class: File
+ identifier: PTRC_Skubitz_Plex2_F10_9Aug19_Rage_Rep-19-06-08.raw
+ location: https://zenodo.org/records/10720030/files/PTRC_Skubitz_Plex2_F10_9Aug19_Rage_Rep-19-06-08.raw
+ outputs:
+ Quantified-Proteins:
+ path: test-data/Quantified-Proteins.tabular
+ Quantified-Peptides:
+ path: test-data/Quantified-Peptides.tabular
diff --git a/workflows/proteomics/clinicalmp/clinicalmp-quantitation/iwc-clinicalmp-quantitation.ga b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/iwc-clinicalmp-quantitation.ga
new file mode 100644
index 000000000..9021d3f8a
--- /dev/null
+++ b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/iwc-clinicalmp-quantitation.ga
@@ -0,0 +1,404 @@
+{
+ "a_galaxy_workflow": "true",
+ "annotation": "Clinical Metaproteomics 4: Quantitation ",
+ "comments": [],
+ "creator": [
+ {
+ "class": "Organization",
+ "name": "GalaxyP"
+ }
+ ],
+ "format-version": "0.1",
+ "license": "CC-BY-4.0",
+ "name": "Clinical Metaproteomics Quantitation",
+ "release": "0.1",
+ "report": {
+ "markdown": "\n# Workflow Execution Report\n\n## Workflow Inputs\n```galaxy\ninvocation_inputs()\n```\n\n## Workflow Outputs\n```galaxy\ninvocation_outputs()\n```\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n"
+ },
+ "steps": {
+ "0": {
+ "annotation": "Input protein database",
+ "content_id": null,
+ "errors": null,
+ "id": 0,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "Input protein database",
+ "name": "Quantitation_Database-For-MaxQuant"
+ }
+ ],
+ "label": "Quantitation_Database-For-MaxQuant",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 0,
+ "top": 0
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "c2311b55-b0c7-4237-bed1-4b25bf1a1655",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "1": {
+ "annotation": "design file ",
+ "content_id": null,
+ "errors": null,
+ "id": 1,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "design file ",
+ "name": "Experimental-Design Discovery MaxQuant"
+ }
+ ],
+ "label": "Experimental-Design Discovery MaxQuant",
+ "name": "Input dataset",
+ "outputs": [],
+ "position": {
+ "left": 65.796875,
+ "top": 168.203125
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"tag\": null}",
+ "tool_version": null,
+ "type": "data_input",
+ "uuid": "d957f00d-79a9-4e2e-8e15-088444ca5605",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "2": {
+ "annotation": "MSMS data",
+ "content_id": null,
+ "errors": null,
+ "id": 2,
+ "input_connections": {},
+ "inputs": [
+ {
+ "description": "MSMS data",
+ "name": "Input Raw-files"
+ }
+ ],
+ "label": "Input Raw-files",
+ "name": "Input dataset collection",
+ "outputs": [],
+ "position": {
+ "left": 41.671875,
+ "top": 532.3671875
+ },
+ "tool_id": null,
+ "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}",
+ "tool_version": null,
+ "type": "data_collection_input",
+ "uuid": "2864b493-6d12-4313-ad29-f3b1e2564aba",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "3": {
+ "annotation": "Database searching",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/2.0.3.0+galaxy0",
+ "errors": null,
+ "id": 3,
+ "input_connections": {
+ "input_opts|fasta_files": {
+ "id": 0,
+ "output_name": "output"
+ },
+ "paramGroups_0|files": {
+ "id": 2,
+ "output_name": "output"
+ },
+ "search_opts|template": {
+ "id": 1,
+ "output_name": "output"
+ }
+ },
+ "inputs": [
+ {
+ "description": "runtime parameter for tool MaxQuant",
+ "name": "input_opts"
+ },
+ {
+ "description": "runtime parameter for tool MaxQuant",
+ "name": "search_opts"
+ }
+ ],
+ "label": "MaxQuant",
+ "name": "MaxQuant",
+ "outputs": [
+ {
+ "name": "proteinGroups",
+ "type": "tabular"
+ },
+ {
+ "name": "mqpar",
+ "type": "xml"
+ },
+ {
+ "name": "peptides",
+ "type": "tabular"
+ },
+ {
+ "name": "evidence",
+ "type": "tabular"
+ },
+ {
+ "name": "msms",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 427.9609375,
+ "top": 170.17578125
+ },
+ "post_job_actions": {},
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/2.0.3.0+galaxy0",
+ "tool_shed_repository": {
+ "changeset_revision": "9c52362ae7bb",
+ "name": "maxquant",
+ "owner": "galaxyp",
+ "tool_shed": "toolshed.g2.bx.psu.edu"
+ },
+ "tool_state": "{\"input_opts\": {\"ftype\": \".thermo.raw\", \"fasta_files\": {\"__class__\": \"ConnectedValue\"}, \"identifier_parse_rule\": \">([^\\\\s]*)\", \"description_parse_rule\": \">(.*)\"}, \"output_opts\": {\"dry_run\": false, \"output\": [\"proteinGroups\", \"mqpar\", \"peptides\", \"msms\", \"evidence\"]}, \"paramGroups\": [{\"__index__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}, \"maxMissedCleavages\": \"2\", \"fixedModifications\": [\"Carbamidomethyl (C)\"], \"variableModifications\": [\"Oxidation (M)\"], \"enzymes\": [\"Trypsin/P\"], \"digestion_mode\": \"0\", \"quant_method\": {\"select_quant_method\": \"reporter_ion_ms2\", \"__current_case__\": 3, \"iso_labels\": {\"labeling\": \"tmt11plex\", \"__current_case__\": 4}, \"filter_by_pif\": {\"filter_pif\": \"False\", \"__current_case__\": 1}}}], \"protein_quant\": {\"peptides_for_quantification\": \"1\", \"only_unmod_prot\": {\"unmod_prot\": \"True\", \"__current_case__\": 0, \"mods_used_prot_quant\": [\"Oxidation (M)\"], \"discard_unmod_cpart_peptides\": true}, \"lfq_opts\": {\"separateLfq\": false, \"lfqStabilizeLargeRatios\": true, \"lfqRequireMsms\": true, \"do_ibaq\": {\"ibaq\": \"False\", \"__current_case__\": 1}, \"advancedSiteIntensities\": true}}, \"qc\": {\"do_it\": \"false\", \"__current_case__\": 1}, \"search_opts\": {\"template\": {\"__class__\": \"ConnectedValue\"}, \"min_peptide_len\": \"8\", \"max_peptide_mass\": \"4600\", \"min_unique_pep\": \"0\", \"calc_peak_properties\": false, \"mbr\": {\"match_between_runs\": \"True\", \"__current_case__\": 1, \"matching_time_window\": \"0.7\", \"matching_ion_mobility_window\": \"0.05\", \"alignment_time_window\": \"20\", \"alignment_ion_mobility_window\": \"1\", \"match_unidentified_features\": false}, \"incl_contaminants\": false, \"decoy_mode\": \"revert\", \"psm_fdr\": \"0.01\", \"protein_fdr\": \"0.01\", \"min_pep_length\": \"8\", \"max_pep_length\": \"50\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.0.3.0+galaxy0",
+ "type": "tool",
+ "uuid": "7e8ec7d9-8fe8-4cf0-a2b3-6358b96c7af5",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "4": {
+ "annotation": "extracting microbial Proteins",
+ "content_id": "Grep1",
+ "errors": null,
+ "id": 4,
+ "input_connections": {
+ "input": {
+ "id": 3,
+ "output_name": "proteinGroups"
+ }
+ },
+ "inputs": [],
+ "label": "extracting microbial Proteins",
+ "name": "Select",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 701.3374260878941,
+ "top": 226.36456298828125
+ },
+ "post_job_actions": {},
+ "tool_id": "Grep1",
+ "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"-v\", \"keep_header\": false, \"pattern\": \"(_HUMAN)|(_REVERSED)|(CON)|(con)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.4",
+ "type": "tool",
+ "uuid": "ee371998-9bf4-4462-abad-63d6a73b995e",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "5": {
+ "annotation": "extracting microbial Peptides",
+ "content_id": "Grep1",
+ "errors": null,
+ "id": 5,
+ "input_connections": {
+ "input": {
+ "id": 3,
+ "output_name": "peptides"
+ }
+ },
+ "inputs": [],
+ "label": "extracting microbial Peptides",
+ "name": "Select",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "input"
+ }
+ ],
+ "position": {
+ "left": 700.39453125,
+ "top": 350.8984375
+ },
+ "post_job_actions": {},
+ "tool_id": "Grep1",
+ "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"-v\", \"keep_header\": false, \"pattern\": \"(_HUMAN)|(_REVERSED)|(CON)|(con)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.4",
+ "type": "tool",
+ "uuid": "72ea8f91-5de4-43bc-a2c9-264491627eb2",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "6": {
+ "annotation": "extract proteins",
+ "content_id": "Cut1",
+ "errors": null,
+ "id": 6,
+ "input_connections": {
+ "input": {
+ "id": 4,
+ "output_name": "out_file1"
+ }
+ },
+ "inputs": [],
+ "label": "extract proteins",
+ "name": "Cut",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 966.0546875,
+ "top": 189.30078125
+ },
+ "post_job_actions": {},
+ "tool_id": "Cut1",
+ "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c1\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.2",
+ "type": "tool",
+ "uuid": "44654f5d-e388-4604-bd61-8eda7bd71152",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "7": {
+ "annotation": "extract peptides",
+ "content_id": "Cut1",
+ "errors": null,
+ "id": 7,
+ "input_connections": {
+ "input": {
+ "id": 5,
+ "output_name": "out_file1"
+ }
+ },
+ "inputs": [],
+ "label": "extract peptides",
+ "name": "Cut",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 936.2249993300816,
+ "top": 350.8452453613281
+ },
+ "post_job_actions": {},
+ "tool_id": "Cut1",
+ "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c1\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.0.2",
+ "type": "tool",
+ "uuid": "c8cc87cd-13ec-418a-8f95-d0d23dd37e6c",
+ "when": null,
+ "workflow_outputs": []
+ },
+ "8": {
+ "annotation": "Quantified-Proteins",
+ "content_id": "Grouping1",
+ "errors": null,
+ "id": 8,
+ "input_connections": {
+ "input1": {
+ "id": 6,
+ "output_name": "out_file1"
+ }
+ },
+ "inputs": [],
+ "label": "Quantified-Proteins",
+ "name": "Group",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 1221.822265625,
+ "top": 177.025390625
+ },
+ "post_job_actions": {
+ "RenameDatasetActionout_file1": {
+ "action_arguments": {
+ "newname": "Quantified-Proteins"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "out_file1"
+ }
+ },
+ "tool_id": "Grouping1",
+ "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"groupcol\": \"1\", \"ignorecase\": false, \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.1.4",
+ "type": "tool",
+ "uuid": "d76c6369-3878-45de-9b28-45ae510ba481",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Quantified-Proteins",
+ "output_name": "out_file1",
+ "uuid": "57a2ff00-7ad2-4fbb-aafb-6b8323bd23c3"
+ }
+ ]
+ },
+ "9": {
+ "annotation": "Quantified-Peptides",
+ "content_id": "Grouping1",
+ "errors": null,
+ "id": 9,
+ "input_connections": {
+ "input1": {
+ "id": 7,
+ "output_name": "out_file1"
+ }
+ },
+ "inputs": [],
+ "label": "Quantified-Peptides",
+ "name": "Group",
+ "outputs": [
+ {
+ "name": "out_file1",
+ "type": "tabular"
+ }
+ ],
+ "position": {
+ "left": 1213.8046875,
+ "top": 342.296875
+ },
+ "post_job_actions": {
+ "RenameDatasetActionout_file1": {
+ "action_arguments": {
+ "newname": "Quantified-Peptides"
+ },
+ "action_type": "RenameDatasetAction",
+ "output_name": "out_file1"
+ }
+ },
+ "tool_id": "Grouping1",
+ "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"groupcol\": \"1\", \"ignorecase\": false, \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.1.4",
+ "type": "tool",
+ "uuid": "019fe847-4fb9-441f-9450-505f855434e7",
+ "when": null,
+ "workflow_outputs": [
+ {
+ "label": "Quantified-Peptides",
+ "output_name": "out_file1",
+ "uuid": "41b20ef9-acef-4b1d-9a93-1df0c1447a03"
+ }
+ ]
+ }
+ },
+ "tags": [
+ "name:clinicalMP"
+ ],
+ "uuid": "e21d954c-bb46-46f3-8081-0095b6b0de1f",
+ "version": 1
+}
diff --git a/workflows/proteomics/clinicalmp/clinicalmp-quantitation/test-data/Quantified-Peptides.tabular b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/test-data/Quantified-Peptides.tabular
new file mode 100644
index 000000000..ead5dd4aa
--- /dev/null
+++ b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/test-data/Quantified-Peptides.tabular
@@ -0,0 +1,151 @@
+AAFPNVTAMNITTNNGK
+AANYLSVGQLFLMK
+AATGITSDDSGYVYEVSGTGK
+ADVTVATAADK
+AELFYHLVGK
+AFDDDNITSVTGK
+AFVAAGVDK
+AGAVILEPIMK
+AIGLVLPNLNGK
+AILLSHLGR
+AITNGTAVNNDATATIAQVNEADAAIVSAK
+ALGITHVQIMPSYDFASIDETK
+AMYLGIDQAVLGNR
+AQDILDIR
+ATEAAVNELHK
+ATVTVEPEVK
+AVATAPDGVVEGLENK
+AVDAGAEIFYQYPEIDSK
+AVNNVNTEINDALK
+AVSQMPDQK
+AVVANSAEEANSK
+AYQVTLNAK
+DAEEHADEDK
+DALDAIADTMK
+DALDAIADTMKK
+DALWDYFMEK
+DATNAAMMNMLDSHDTAR
+DEQSHLEDR
+DFSVNVISK
+DGSSLDYVFSADAYK
+DIILNGLTNLEYR
+DMVADQMDSMNISVPVILNLDHGDFESAK
+DSDFKPFGNFK
+DTTVPSQSK
+EADYIVPTTAELK
+EDSLPMEIIQELK
+EGDILVAK
+EIVTENTAK
+EMGMDYVIIGHSER
+EPDHSINPDEAVAMGAAIQGGVISGDVK
+EVANMAYEIINK
+EVEDAINNMK
+FDIDVPVSEFNREEWDTPNK
+FIEQVGYYNPVSQPK
+FVAAGVDK
+GDMGVEIPFMEVPFVQK
+GEIPSYTVFENDDVK
+GEITVVANEK
+GFDMNTLVIEPFADPFR
+GHVFFVDQK
+GINTELSVVEGMQFDR
+GITINTAHVEYETENR
+GIYPSSANFTTDLHSLGQYIQEGLR
+GLIILGPK
+GLLTVINGEQTPEK
+GSVNVTAGVNGR
+GTFSVITGPSGAGK
+GTTNAVYWK
+GVNAPGVEIR
+GWLNLPVDYDK
+GWLNLPVDYDKDEFAR
+GYEFEDAIVGGVVPR
+GYFHETDEDINKK
+HDGGGHALASGANAK
+HYAHMDAPGHADYIK
+HYTSVISK
+IDFKGDQVR
+IEAFVNENLK
+IFEIDPWK
+IGINGFGR
+IITVTPTDPK
+IMNFNTADPLYYR
+INDEAGFSMDVK
+IVQFTGASDVK
+IVSAASCTTNSLAPMANALDK
+IVSGTDTPEAFVVNIK
+IVSTLGPASNDIETITALAK
+KAIQLGIAK
+KGETVSITTPGGK
+KNHYAVGAYNTNNLEWTR
+KVTADEVNEAMKK
+LAAHQQLINSSNIK
+LAEDLTQTDQYK
+LAYELFENK
+LFVAPVGSDEITR
+LISIEDIK
+LITIDGSPYSSLQEVLDHTK
+LLATSHDGAFAK
+LLDEFPELISMEDPYDENDVDGMVK
+LLLPGTEAITDK
+LLYIWVPSENK
+LNVECDMVGLISK
+LNVSTVASEILK
+LSDDELVALNK
+LTNTNEQQLR
+LTQFVHENELSEMQAMVNAANTELR
+MAMNPITNGGLDPK
+MFADHQGQEEGAK
+MHLEGDGCK
+MLAPTPIESDLGNAYYLK
+NEVDQLIFTTDK
+NFAAYQVSNGK
+NGVLAGYPLIDVK
+NIADVTFDEAK
+NLDQLNFLEGK
+NLGIMAIPTLIVK
+NMFGLLNKPGYENLHDDLAK
+QADVLQGIYFLNDQYTK
+QIWFIGIK
+QKIDDADLAETPLR
+QLMGESEGK
+QSDVAVSGK
+QSGVIVTDLPILHTK
+QVGVNYIVVFLNK
+RFVAAGVDK
+RVLISAPAGNDLK
+SDVFNLGTAQGYSNLEILNAAK
+SGKEQDAR
+SIMGVMSLGVGQNADVTITAEGDDEK
+SLFEADKVDLAK
+SLIQFIKPTDIYDANGNK
+SQAHLDAGAK
+SSEVVGQTNSSK
+SVMLVDHNEPQQSVSDIDK
+SYHVYAEPQAQNIPWVK
+TATVDEVTGK
+TIVYSVNEDTLTADDK
+TMIDLDGTPNK
+TNLVLEAIVAAEDLK
+TSGNLVLK
+TTGDLTFDISQDEIK
+TTTGAQGAQVK
+VDFNVPIK
+VDPDYPIK
+VESLICAPAVDLDALRK
+VHQLIDFR
+VIDSQLSEHQDEGFLEGYVLTGR
+VITAFNDGLNHLDSLK
+VLEDMGYETGLGDEGGFAPNMK
+VLISAPAGNDLK
+VPVPDGSETELVSILSKK
+VTADEVNEAMKK
+VTSSINGVDATLPVTVNVANGK
+VVDSMLTQHMK
+VYNINGNVVSEAANIPALAK
+VYSLGNTSVIYTESK
+WVPYIWGK
+YDTTMMGPNLVVDYANASLNLK
+YGVLADADFTCYPGIEEECLK
+YIATSATATPELFYK
+YLVFSSSAATYGIPK
diff --git a/workflows/proteomics/clinicalmp/clinicalmp-quantitation/test-data/Quantified-Proteins.tabular b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/test-data/Quantified-Proteins.tabular
new file mode 100644
index 000000000..a1b38ec08
--- /dev/null
+++ b/workflows/proteomics/clinicalmp/clinicalmp-quantitation/test-data/Quantified-Proteins.tabular
@@ -0,0 +1,61 @@
+REV__tr|A0A5M9Z5J2|A0A5M9Z5J2_9LACO
+tr|A0A109DCE4|A0A109DCE4_9LACO
+tr|A0A109DDL0|A0A109DDL0_9LACO
+tr|A0A109DE80|A0A109DE80_9LACO
+tr|A0A109DEN4|A0A109DEN4_9LACO
+tr|A0A109DFH6|A0A109DFH6_9LACO
+tr|A0A109DG82|A0A109DG82_9LACO
+tr|A0A109DSL0|A0A109DSL0_9LACO
+tr|A0A109DVU6|A0A109DVU6_9LACO
+tr|A0A120DIB4|A0A120DIB4_9LACO
+tr|A0A120DII0|A0A120DII0_9LACO
+tr|A0A120DIT0|A0A120DIT0_9LACO
+tr|A0A120DMZ5|A0A120DMZ5_9LACO
+tr|A0A125P6A1|A0A125P6A1_9LACO
+tr|A0A125P758|A0A125P758_9LACO
+tr|A0A135YNS0|A0A135YNS0_9LACO
+tr|A0A135YP82|A0A135YP82_9LACO
+tr|A0A135YT28|A0A135YT28_9LACO
+tr|A0A135YVG4|A0A135YVG4_9LACO
+tr|A0A135Z5A7|A0A135Z5A7_9LACO
+tr|A0A135Z6P3|A0A135Z6P3_9LACO
+tr|A0A135ZFV0|A0A135ZFV0_9LACO;tr|Q8KMR1|Q8KMR1_9LACO
+tr|A0A135ZGE4|A0A135ZGE4_9LACO
+tr|A0A135ZGE9|A0A135ZGE9_9LACO
+tr|A0A135ZGV7|A0A135ZGV7_9LACO
+tr|A0A226TTE3|A0A226TTE3_9LACO
+tr|A0A226U3A0|A0A226U3A0_9LACO
+tr|A0A226VDW7|A0A226VDW7_9LACO
+tr|A0A2I1WFM5|A0A2I1WFM5_9LACO
+tr|A0A2I1WJX0|A0A2I1WJX0_9LACO
+tr|A0A2M9WK51|A0A2M9WK51_9LACO
+tr|A0A3S4NV91|A0A3S4NV91_ECOLX
+tr|A0A4Q0LRZ3|A0A4Q0LRZ3_9LACO
+tr|A0A4Q0LUV9|A0A4Q0LUV9_9LACO
+tr|A0A4R6CS92|A0A4R6CS92_9LACO
+tr|A0A5M9YUF3|A0A5M9YUF3_9LACO
+tr|A0A5M9YZ46|A0A5M9YZ46_9LACO
+tr|A0A5M9Z5J2|A0A5M9Z5J2_9LACO
+tr|A0A5N1I933|A0A5N1I933_LACJE
+tr|A0A6G5W850|A0A6G5W850_9LACO
+tr|A0A6M1GIB3|A0A6M1GIB3_9LACO
+tr|A0A6M1GIM6|A0A6M1GIM6_9LACO;tr|A0A7X1T2Z9|A0A7X1T2Z9_ECOLX
+tr|A0A6M1GJ74|A0A6M1GJ74_9LACO
+tr|A0A6M1GK10|A0A6M1GK10_9LACO
+tr|A0A6N7WXU9|A0A6N7WXU9_9FIRM
+tr|A0A7I7D716|A0A7I7D716_9ENTR
+tr|A0A921FGF9|A0A921FGF9_9LACO
+tr|A0A921FI01|A0A921FI01_9LACO;tr|A0A5M9Z575|A0A5M9Z575_9LACO
+tr|A0A921FI47|A0A921FI47_9LACO
+tr|A0A921FI67|A0A921FI67_9LACO
+tr|A0A921FJ80|A0A921FJ80_9LACO
+tr|A0A921K4L5|A0A921K4L5_9LACO
+tr|A0A921K4U9|A0A921K4U9_9LACO
+tr|A0A921K4X9|A0A921K4X9_9LACO
+tr|A0A921K527|A0A921K527_9LACO
+tr|A0A921K533|A0A921K533_9LACO
+tr|C7XGC7|C7XGC7_9LACO
+tr|E3R6B6|E3R6B6_9LACO;tr|A0A921FHI5|A0A921FHI5_9LACO
+tr|F4UYA6|F4UYA6_ECOLX
+tr|Q09J60|Q09J60_BIFLN
+tr|Q6TCE6|Q6TCE6_9LACO
diff --git a/workflows/sars-cov-2-variant-calling/sars-cov-2-pe-illumina-artic-variant-calling/CHANGELOG.md b/workflows/sars-cov-2-variant-calling/sars-cov-2-pe-illumina-artic-variant-calling/CHANGELOG.md
index f43e4eac3..9c87f0a03 100644
--- a/workflows/sars-cov-2-variant-calling/sars-cov-2-pe-illumina-artic-variant-calling/CHANGELOG.md
+++ b/workflows/sars-cov-2-variant-calling/sars-cov-2-pe-illumina-artic-variant-calling/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [0.5.3] 2024-10-01
+
+### Tool updates
+
+- `toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0` updated to `toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy0` updated to `toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1`
+
## [0.5.2] 2024-03-05
### Automatic update
diff --git a/workflows/sars-cov-2-variant-calling/sars-cov-2-pe-illumina-artic-variant-calling/pe-artic-variation.ga b/workflows/sars-cov-2-variant-calling/sars-cov-2-pe-illumina-artic-variant-calling/pe-artic-variation.ga
index 3f1530d61..aaf2b6107 100644
--- a/workflows/sars-cov-2-variant-calling/sars-cov-2-pe-illumina-artic-variant-calling/pe-artic-variation.ga
+++ b/workflows/sars-cov-2-variant-calling/sars-cov-2-pe-illumina-artic-variant-calling/pe-artic-variation.ga
@@ -11,7 +11,7 @@
"format-version": "0.1",
"license": "MIT",
"name": "COVID-19: variation analysis on ARTIC PE data",
- "release": "0.5.2",
+ "release": "0.5.3",
"steps": {
"0": {
"annotation": "Illumina reads from ARTIC assay with fastqsanger encoding",
@@ -231,7 +231,7 @@
},
"8": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy1",
"errors": null,
"id": 8,
"input_connections": {
@@ -273,15 +273,15 @@
"output_name": "report_json"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "c59d48774d03",
+ "changeset_revision": "d60c3f704da0",
"name": "fastp",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"paired_collection\", \"__current_case__\": 2, \"paired_input\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": \"\", \"adapter_sequence2\": \"\"}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.23.4+galaxy0",
+ "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"paired_collection\", \"__current_case__\": 2, \"paired_input\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": \"\", \"adapter_sequence2\": \"\", \"detect_adapter_for_pe\": false}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "0.23.4+galaxy1",
"type": "tool",
"uuid": "849d9cac-14b8-4e45-823d-5747709e8b60",
"when": null,
@@ -1543,7 +1543,7 @@
},
"30": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"errors": null,
"id": 30,
"input_connections": {
@@ -1571,15 +1571,15 @@
"top": 745.546875
},
"post_job_actions": {},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"find_pattern\": \"^##INFO=\"}, {\"__index__\": 1, \"find_pattern\": \"^##INFO= --min-bq among all bases at the site\\\">\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "490dbabb-04ee-426d-a8e5-e2ec9e59de3a",
"when": null,
@@ -1731,4 +1731,4 @@
"covid19.galaxyproject.org"
],
"uuid": "864427b0-d25a-499c-b437-f83f2d6b83f2"
-}
\ No newline at end of file
+}
diff --git a/workflows/sars-cov-2-variant-calling/sars-cov-2-variation-reporting/CHANGELOG.md b/workflows/sars-cov-2-variant-calling/sars-cov-2-variation-reporting/CHANGELOG.md
index f7f1325f7..166bbf5df 100644
--- a/workflows/sars-cov-2-variant-calling/sars-cov-2-variation-reporting/CHANGELOG.md
+++ b/workflows/sars-cov-2-variant-calling/sars-cov-2-variation-reporting/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog
+## [0.3.4] 2024-09-24
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0` was updated to `toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1`
+- `toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.1` was updated to `toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.2`
+- `toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1`
+
## [0.3.2] 2023-11-28
### Automatic update
diff --git a/workflows/sars-cov-2-variant-calling/sars-cov-2-variation-reporting/variation-reporting.ga b/workflows/sars-cov-2-variant-calling/sars-cov-2-variation-reporting/variation-reporting.ga
index ffcbe21e9..10afce516 100644
--- a/workflows/sars-cov-2-variant-calling/sars-cov-2-variation-reporting/variation-reporting.ga
+++ b/workflows/sars-cov-2-variant-calling/sars-cov-2-variation-reporting/variation-reporting.ga
@@ -11,7 +11,7 @@
"format-version": "0.1",
"license": "MIT",
"name": "COVID-19: variation analysis reporting",
- "release": "0.3.3",
+ "release": "0.3.4",
"steps": {
"0": {
"annotation": "Variation data in VCF format. Can be the output of any of the workflows in https://github.com/galaxyproject/iwc/tree/main/workflows/sars-cov-2-variant-calling",
@@ -210,12 +210,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool SnpSift Filter",
- "name": "input"
- }
- ],
+ "inputs": [],
"label": null,
"name": "SnpSift Filter",
"outputs": [
@@ -382,10 +377,6 @@
{
"description": "runtime parameter for tool SnpSift Filter",
"name": "filtering"
- },
- {
- "description": "runtime parameter for tool SnpSift Filter",
- "name": "input"
}
],
"label": null,
@@ -440,12 +431,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool SnpSift Extract Fields",
- "name": "input"
- }
- ],
+ "inputs": [],
"label": null,
"name": "SnpSift Extract Fields",
"outputs": [
@@ -502,16 +488,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Replace column",
- "name": "original_file"
- },
- {
- "description": "runtime parameter for tool Replace column",
- "name": "replace_information"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Replace column",
"outputs": [
@@ -562,7 +539,7 @@
},
"12": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1",
"errors": null,
"id": 12,
"input_connections": {
@@ -571,12 +548,7 @@
"output_name": "outfile_replace"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Compute",
- "name": "input"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Compute",
"outputs": [
@@ -598,15 +570,15 @@
"output_name": "out_file1"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1",
"tool_shed_repository": {
- "changeset_revision": "6595517c2dd8",
+ "changeset_revision": "aff5135563c6",
"name": "column_maker",
"owner": "devteam",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"avoid_scientific_notation\": false, \"error_handling\": {\"auto_col_types\": true, \"fail_on_non_existent_columns\": true, \"non_computable\": {\"action\": \"--fail-on-non-computable\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"ops\": {\"header_lines_select\": \"yes\", \"__current_case__\": 1, \"expressions\": [{\"__index__\": 0, \"cond\": \"c7\", \"add_column\": {\"mode\": \"I\", \"__current_case__\": 1, \"pos\": \"8\"}, \"new_column_name\": \"AFcaller\"}, {\"__index__\": 1, \"cond\": \"round((c18 + c19) / c6, 6)\", \"add_column\": {\"mode\": \"R\", \"__current_case__\": 2, \"pos\": \"7\"}, \"new_column_name\": \"AF\"}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.0",
+ "tool_version": "2.1",
"type": "tool",
"uuid": "c457f29e-dea5-449a-84c4-4b192da88257",
"when": null,
@@ -629,12 +601,7 @@
"output_name": "out_file1"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Datamash",
- "name": "in_file"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Datamash",
"outputs": [
@@ -678,7 +645,7 @@
},
"14": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"errors": null,
"id": 14,
"input_connections": {
@@ -687,12 +654,7 @@
"output_name": "out_file"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Replace",
- "name": "infile"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Replace",
"outputs": [
@@ -714,15 +676,15 @@
"output_name": "outfile"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"\\\\t([^\\\\t,]+),[^\\\\t]+\\\\t([^\\\\t,]+),[^\\\\t]+\\\\t([^\\\\t,]+),[^\\\\t]+\\\\t([^\\\\t,]+),[^\\\\t]+\\\\t([^\\\\t,]+),[^\\\\t]+\\\\t([^\\\\t,]+),[^\\\\t]+\\\\t([^\\\\t,]+),[^\\\\s]+\", \"replace_pattern\": \"\\\\t$1\\\\t$2\\\\t$3\\\\t$4\\\\t$5\\\\t$6\\\\t$7\", \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": true, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}, {\"__index__\": 1, \"find_pattern\": \"(GroupBy|collapse)\\\\(([^)]+)\\\\)\", \"replace_pattern\": \"$2\", \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "25f665b6-2b6a-49a3-a395-29706cd772ab",
"when": null,
@@ -745,12 +707,7 @@
"output_name": "outfile"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Collapse Collection",
- "name": "input_list"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Collapse Collection",
"outputs": [
@@ -786,7 +743,7 @@
},
"16": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1",
"errors": null,
"id": 16,
"input_connections": {
@@ -795,12 +752,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Compute",
- "name": "input"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Compute",
"outputs": [
@@ -820,15 +772,15 @@
"output_name": "out_file1"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1",
"tool_shed_repository": {
- "changeset_revision": "6595517c2dd8",
+ "changeset_revision": "aff5135563c6",
"name": "column_maker",
"owner": "devteam",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"avoid_scientific_notation\": false, \"error_handling\": {\"auto_col_types\": false, \"fail_on_non_existent_columns\": true, \"non_computable\": {\"action\": \"--fail-on-non-computable\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"ops\": {\"header_lines_select\": \"yes\", \"__current_case__\": 1, \"expressions\": [{\"__index__\": 0, \"cond\": \"c5 + '>' + c6\", \"add_column\": {\"mode\": \"\", \"__current_case__\": 0, \"pos\": \"\"}, \"new_column_name\": \"change\"}, {\"__index__\": 1, \"cond\": \"c3 + ':' + c19\", \"add_column\": {\"mode\": \"\", \"__current_case__\": 0, \"pos\": \"\"}, \"new_column_name\": \"change_with_pos\"}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.0",
+ "tool_version": "2.1",
"type": "tool",
"uuid": "cc8a768f-8078-4bdd-ae98-903f08619070",
"when": null,
@@ -836,7 +788,7 @@
},
"17": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"errors": null,
"id": 17,
"input_connections": {
@@ -845,12 +797,7 @@
"output_name": "out_file1"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Replace",
- "name": "infile"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Replace",
"outputs": [
@@ -872,15 +819,15 @@
"output_name": "outfile"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"EFF[*].\", \"replace_pattern\": \"\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "82276b6c-5c6e-49eb-8ee5-46041c273d30",
"when": null,
@@ -903,12 +850,7 @@
"output_name": "outfile"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Datamash",
- "name": "in_file"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Datamash",
"outputs": [
@@ -953,12 +895,7 @@
"output_name": "outfile"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Filter",
- "name": "input"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Filter",
"outputs": [
@@ -997,12 +934,7 @@
"output_name": "outfile"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Datamash",
- "name": "in_file"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Datamash",
"outputs": [
@@ -1045,7 +977,7 @@
},
"21": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
"errors": null,
"id": 21,
"input_connections": {
@@ -1058,16 +990,7 @@
"output_name": "out_file"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Join",
- "name": "infile1"
- },
- {
- "description": "runtime parameter for tool Join",
- "name": "infile2"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Join",
"outputs": [
@@ -1094,15 +1017,15 @@
"output_name": "output"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"column1\": \"20\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": true, \"ignore_case\": false, \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "7e27aac8-1d1e-4d82-88e3-59c4cd61baeb",
"when": null,
@@ -1119,12 +1042,7 @@
"output_name": "out_file1"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Datamash",
- "name": "in_file"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Datamash",
"outputs": [
@@ -1169,12 +1087,7 @@
"output_name": "out_file1"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Datamash",
- "name": "in_file"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Datamash",
"outputs": [
@@ -1219,12 +1132,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Datamash",
- "name": "in_file"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Datamash",
"outputs": [
@@ -1260,7 +1168,7 @@
},
"25": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
"errors": null,
"id": 25,
"input_connections": {
@@ -1273,16 +1181,7 @@
"output_name": "out_file"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Join",
- "name": "infile1"
- },
- {
- "description": "runtime parameter for tool Join",
- "name": "infile2"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Join",
"outputs": [
@@ -1302,15 +1201,15 @@
"output_name": "output"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"column1\": \"3\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": true, \"ignore_case\": false, \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "3927af37-c003-4fac-a8af-88ba2b656b22",
"when": null,
@@ -1318,7 +1217,7 @@
},
"26": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
"errors": null,
"id": 26,
"input_connections": {
@@ -1331,16 +1230,7 @@
"output_name": "out_file"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Join",
- "name": "infile1"
- },
- {
- "description": "runtime parameter for tool Join",
- "name": "infile2"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Join",
"outputs": [
@@ -1360,15 +1250,15 @@
"output_name": "output"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"column1\": \"20\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": true, \"ignore_case\": false, \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "472af513-7900-41a5-b049-feb2d630ad2c",
"when": null,
@@ -1385,12 +1275,7 @@
"output_name": "out_file"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Cut",
- "name": "input"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Cut",
"outputs": [
@@ -1420,7 +1305,7 @@
},
"28": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
"errors": null,
"id": 28,
"input_connections": {
@@ -1433,16 +1318,7 @@
"output_name": "out_file"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Join",
- "name": "infile1"
- },
- {
- "description": "runtime parameter for tool Join",
- "name": "infile2"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Join",
"outputs": [
@@ -1469,15 +1345,15 @@
"output_name": "output"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": true, \"ignore_case\": false, \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "1b250a36-d3ae-415e-9764-006182096a60",
"when": null,
@@ -1494,12 +1370,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Cut",
- "name": "input"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Cut",
"outputs": [
@@ -1529,7 +1400,7 @@
},
"30": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"errors": null,
"id": 30,
"input_connections": {
@@ -1538,12 +1409,7 @@
"output_name": "out_file1"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Replace",
- "name": "infile"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Replace",
"outputs": [
@@ -1570,15 +1436,15 @@
"output_name": "outfile"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"unique\\\\(Sample\\\\)\\\\tcollapse\\\\(Sample\\\\)\\\\tcollapse\\\\(AF\\\\)\", \"replace_pattern\": \"SAMPLES(above-thresholds)\\\\tSAMPLES(all)\\\\tAFs(all)\", \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "6116c1c6-7c7c-43fe-9c91-609c91c6ed85",
"when": null,
@@ -1595,12 +1461,7 @@
"output_name": "output"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Cut",
- "name": "input"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Cut",
"outputs": [
@@ -1630,7 +1491,7 @@
},
"32": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.2",
"errors": null,
"id": 32,
"input_connections": {
@@ -1666,15 +1527,15 @@
"output_name": "list_output_tab"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.2",
"tool_shed_repository": {
- "changeset_revision": "baabc30154cd",
+ "changeset_revision": "2dae863c8f42",
"name": "split_file_to_collection",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"split_parms\": {\"select_ftype\": \"tabular\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"top\": \"1\", \"split_by\": {\"select_split_by\": \"col\", \"__current_case__\": 0, \"id_col\": \"1\", \"match_regex\": \"(.*)\", \"sub_regex\": \"\\\\1\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "0.5.1",
+ "tool_version": "0.5.2",
"type": "tool",
"uuid": "9f938b6a-e7fb-4509-9c15-271c475092aa",
"when": null,
@@ -1688,7 +1549,7 @@
},
"33": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1",
"errors": null,
"id": 33,
"input_connections": {
@@ -1697,12 +1558,7 @@
"output_name": "outfile"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Sort",
- "name": "infile"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Sort",
"outputs": [
@@ -1724,15 +1580,15 @@
"output_name": "outfile"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"header\": \"1\", \"ignore_case\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"1\", \"order\": \"\", \"style\": \"g\"}], \"unique\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "0b2f751b-03c6-4302-9060-16856bb4157c",
"when": null,
@@ -1746,7 +1602,7 @@
},
"34": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1",
"errors": null,
"id": 34,
"input_connections": {
@@ -1755,12 +1611,7 @@
"output_name": "out_file1"
}
},
- "inputs": [
- {
- "description": "runtime parameter for tool Sort",
- "name": "infile"
- }
- ],
+ "inputs": [],
"label": null,
"name": "Sort",
"outputs": [
@@ -1782,15 +1633,15 @@
"output_name": "outfile"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "12615d397df7",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"header\": \"1\", \"ignore_case\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"1\", \"order\": \"\", \"style\": \"\"}, {\"__index__\": 1, \"column\": \"2\", \"order\": \"\", \"style\": \"n\"}], \"unique\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "9.3+galaxy0",
+ "tool_version": "9.3+galaxy1",
"type": "tool",
"uuid": "e55320de-be51-4fa5-908e-76c03de24a77",
"when": null,
@@ -1821,10 +1672,6 @@
{
"description": "runtime parameter for tool Variant Frequency Plot",
"name": "clustering"
- },
- {
- "description": "runtime parameter for tool Variant Frequency Plot",
- "name": "sinputs"
}
],
"label": null,
diff --git a/workflows/scRNAseq/fastq-to-matrix-10x/CHANGELOG.md b/workflows/scRNAseq/fastq-to-matrix-10x/CHANGELOG.md
index 9771fe8a1..df831a515 100644
--- a/workflows/scRNAseq/fastq-to-matrix-10x/CHANGELOG.md
+++ b/workflows/scRNAseq/fastq-to-matrix-10x/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## [0.5] 2024-09-25
+
+### Manual update
+- `toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0`
+
## [0.4] 2024-04-08
### Automatic update
diff --git a/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-cellplex-tests.yml b/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-cellplex-tests.yml
index eb13dcea9..723587f8b 100644
--- a/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-cellplex-tests.yml
+++ b/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-cellplex-tests.yml
@@ -54,15 +54,11 @@
Number of expected cells: 500
outputs:
MultiQC_STARsolo:
- class: File
asserts:
- - that: "has_text_matching"
- expression: ">subsample3[0-9].[0-9]% | | "
Seurat input for gene expression (filtered):
- class: Collection
- collection_type: list:list
+ attributes: { collection_type: list:list }
element_tests:
subsample:
elements:
@@ -79,8 +75,7 @@
has_line:
line: "FBgn0250732 gfzf"
CITE-seq-Count report:
- class: Collection
- collection_type: list
+ attributes: { collection_type: list }
element_tests:
subsample:
asserts:
@@ -93,8 +88,7 @@
- that: "has_line"
line: "Percentage unmapped: 1"
Seurat input for CMO (UMI):
- class: Collection
- collection_type: list:list
+ attributes: { collection_type: list:list }
element_tests:
subsample:
elements:
diff --git a/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-cellplex.ga b/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-cellplex.ga
index 7ea0d5b76..04abdf111 100644
--- a/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-cellplex.ga
+++ b/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-cellplex.ga
@@ -1,6 +1,7 @@
{
"a_galaxy_workflow": "true",
"annotation": "This workflow processes the CMO fastqs with CITE-seq-Count and include the translation step required for cellPlex processing. In parallel it processes the Gene Expresion fastqs with STARsolo, filter cells with DropletUtils and reformat all outputs to be easily used by the function 'Read10X' from Seurat.",
+ "comments": [],
"creator": [
{
"class": "Person",
@@ -30,7 +31,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "0.4",
+ "release": "0.5",
"name": "scRNA-seq_preprocessing_10X_cellPlex",
"steps": {
"0": {
@@ -464,7 +465,7 @@
},
"5": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy1",
"errors": null,
"id": 5,
"input_connections": {
@@ -572,15 +573,15 @@
"output_name": "reads_per_gene"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "42ce70172b72",
+ "changeset_revision": "45795f582ae9",
"name": "rna_starsolo",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"outWig\": {\"outWigType\": \"None\", \"__current_case__\": 0, \"outWigStrand\": \"false\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfile\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfeatureExon\": \"exon\", \"sjdbOverhang\": \"100\"}}, \"sc\": {\"solo_type\": \"CB_UMI_Simple\", \"__current_case__\": 0, \"input_types\": {\"use\": \"list_paired\", \"__current_case__\": 1, \"input_collection\": {\"__class__\": \"ConnectedValue\"}}, \"soloCBwhitelist\": {\"__class__\": \"ConnectedValue\"}, \"params\": {\"chemistry\": \"Cv3\", \"__current_case__\": 1}, \"soloBarcodeReadLength\": {\"__class__\": \"ConnectedValue\"}, \"umidedup\": {\"soloUMIdedup\": \"1MM_CR\", \"__current_case__\": 4, \"soloUMIfiltering\": \"-\"}, \"soloCBmatchWLtype\": \"1MM_multi\"}, \"solo\": {\"soloStrand\": \"Forward\", \"soloFeatures\": \"Gene\", \"filter\": {\"filter_type\": \"no_filter\", \"__current_case__\": 3, \"output_raw\": \"true\"}, \"soloOutFormatFeaturesGeneField3\": \"Gene Expression\", \"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\", \"GX\", \"GN\", \"CB\", \"UB\"], \"quantModeGene\": true, \"outSAMunmapped\": false, \"outSAMmapqUnique\": \"60\", \"junction_limits\": {\"limitOutSJoneRead\": \"1000\", \"limitOutSJcollapsed\": \"1000000\", \"limitSjdbInsertNsj\": \"1000000\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.7.11a+galaxy0",
+ "tool_state": "{\"outWig\": {\"outWigType\": \"None\", \"__current_case__\": 0, \"outWigStrand\": \"false\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfile\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfeatureExon\": \"exon\", \"sjdbOverhang\": \"100\"}}, \"sc\": {\"solo_type\": \"CB_UMI_Simple\", \"__current_case__\": 0, \"input_types\": {\"use\": \"list_paired\", \"__current_case__\": 1, \"input_collection\": {\"__class__\": \"ConnectedValue\"}}, \"soloCBwhitelist\": {\"__class__\": \"ConnectedValue\"}, \"params\": {\"chemistry\": \"Cv3\", \"__current_case__\": 1}, \"soloBarcodeReadLength\": {\"__class__\": \"ConnectedValue\"}, \"umidedup\": {\"soloUMIdedup\": \"1MM_CR\", \"__current_case__\": 4, \"soloUMIfiltering\": \"-\"}, \"soloCBmatchWLtype\": \"1MM_multi\"}, \"solo\": {\"soloStrand\": \"Forward\", \"soloFeatures\": \"Gene\", \"wasp_conditional\": {\"waspOutputMode\": \"\", \"__current_case__\": 1}, \"filter\": {\"filter_type\": \"no_filter\", \"__current_case__\": 3, \"output_raw\": \"true\"}, \"soloOutFormatFeaturesGeneField3\": \"Gene Expression\", \"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\", \"GX\", \"GN\", \"CB\", \"UB\"], \"quantModeGene\": true, \"outSAMunmapped\": false, \"outSAMmapqUnique\": \"60\", \"junction_limits\": {\"limitOutSJoneRead\": \"1000\", \"limitOutSJcollapsed\": \"1000000\", \"limitSjdbInsertNsj\": \"1000000\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.7.11a+galaxy1",
"type": "tool",
"uuid": "cef740b0-fa95-4542-b08f-dbfca4bfb3e5",
"when": null,
@@ -588,7 +589,7 @@
},
"6": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 6,
"input_connections": {
@@ -605,13 +606,13 @@
"label": "multiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -625,15 +626,15 @@
"output_name": "stats"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "a16bf20e-2bc9-45e7-a0a3-b5590212b973",
"when": null,
@@ -954,7 +955,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -999,7 +1000,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1044,7 +1045,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1295,8 +1296,8 @@
]
}
},
- "tags": "",
- "uuid": "89502a02-ec65-400c-b428-68eda7ea6b40"
+ "tags": [],
+ "uuid": "933626df-33e9-46ac-8206-d297a7fcb83a"
},
"tool_id": null,
"type": "subworkflow",
@@ -1311,7 +1312,7 @@
]
}
},
- "tags": "",
+ "tags": [],
"uuid": "a999ad68-faa9-4ccb-81b4-ac648af028bd"
},
"tool_id": null,
@@ -1534,7 +1535,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1753,7 +1754,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1798,7 +1799,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1843,7 +1844,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -2094,7 +2095,7 @@
]
}
},
- "tags": "",
+ "tags": [],
"uuid": "79342c4e-bb7a-4b25-a214-7d5a10fbfd79"
},
"tool_id": null,
@@ -2166,6 +2167,6 @@
"tags": [
"#single-cell"
],
- "uuid": "b8bd25f7-caa3-44da-8329-26dce6d46636",
- "version": 4
+ "uuid": "470536e7-ac58-4859-94d6-2085be9c2e17",
+ "version": 3
}
\ No newline at end of file
diff --git a/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-v3-tests.yml b/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-v3-tests.yml
index 82a7c4eee..dcfa61c1d 100644
--- a/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-v3-tests.yml
+++ b/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-v3-tests.yml
@@ -29,15 +29,11 @@
filetype: tabular
outputs:
'MultiQC on input dataset(s): Webpage':
- class: File
asserts:
- - that: "has_text_matching"
- expression: ">subsample3[0-9].[0-9]% | | "
Seurat input for gene expression (filtered):
- class: Collection
- collection_type: list:list
+ attributes: { collection_type: list:list }
element_tests:
subsample:
elements:
diff --git a/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-v3.ga b/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-v3.ga
index 89f7de368..dd5740b2b 100644
--- a/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-v3.ga
+++ b/workflows/scRNAseq/fastq-to-matrix-10x/scrna-seq-fastq-to-matrix-10x-v3.ga
@@ -30,7 +30,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "0.4",
+ "release": "0.5",
"name": "scRNA-seq_preprocessing_10X_v3_Bundle",
"steps": {
"0": {
@@ -170,7 +170,7 @@
},
"5": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy1",
"errors": null,
"id": 5,
"input_connections": {
@@ -278,15 +278,15 @@
"output_name": "reads_per_gene"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "42ce70172b72",
+ "changeset_revision": "45795f582ae9",
"name": "rna_starsolo",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"outWig\": {\"outWigType\": \"None\", \"__current_case__\": 0, \"outWigStrand\": \"false\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfile\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfeatureExon\": \"exon\", \"sjdbOverhang\": \"100\"}}, \"sc\": {\"solo_type\": \"CB_UMI_Simple\", \"__current_case__\": 0, \"input_types\": {\"use\": \"list_paired\", \"__current_case__\": 1, \"input_collection\": {\"__class__\": \"ConnectedValue\"}}, \"soloCBwhitelist\": {\"__class__\": \"ConnectedValue\"}, \"params\": {\"chemistry\": \"Cv3\", \"__current_case__\": 1}, \"soloBarcodeReadLength\": {\"__class__\": \"ConnectedValue\"}, \"umidedup\": {\"soloUMIdedup\": \"1MM_CR\", \"__current_case__\": 4, \"soloUMIfiltering\": \"-\"}, \"soloCBmatchWLtype\": \"1MM_multi\"}, \"solo\": {\"soloStrand\": \"Forward\", \"soloFeatures\": \"Gene\", \"filter\": {\"filter_type\": \"no_filter\", \"__current_case__\": 3, \"output_raw\": \"true\"}, \"soloOutFormatFeaturesGeneField3\": \"Gene Expression\", \"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\", \"GX\", \"GN\", \"CB\", \"UB\"], \"quantModeGene\": true, \"outSAMunmapped\": false, \"outSAMmapqUnique\": \"60\", \"junction_limits\": {\"limitOutSJoneRead\": \"1000\", \"limitOutSJcollapsed\": \"1000000\", \"limitSjdbInsertNsj\": \"1000000\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.7.11a+galaxy0",
+ "tool_state": "{\"outWig\": {\"outWigType\": \"None\", \"__current_case__\": 0, \"outWigStrand\": \"false\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfile\": {\"__class__\": \"RuntimeValue\"}, \"sjdbGTFfeatureExon\": \"exon\", \"sjdbOverhang\": \"100\"}}, \"sc\": {\"solo_type\": \"CB_UMI_Simple\", \"__current_case__\": 0, \"input_types\": {\"use\": \"list_paired\", \"__current_case__\": 1, \"input_collection\": {\"__class__\": \"RuntimeValue\"}}, \"soloCBwhitelist\": {\"__class__\": \"RuntimeValue\"}, \"params\": {\"chemistry\": \"Cv3\", \"__current_case__\": 1}, \"soloBarcodeReadLength\": {\"__class__\": \"ConnectedValue\"}, \"umidedup\": {\"soloUMIdedup\": \"1MM_CR\", \"__current_case__\": 4, \"soloUMIfiltering\": \"-\"}, \"soloCBmatchWLtype\": \"1MM_multi\"}, \"solo\": {\"soloStrand\": \"Forward\", \"soloFeatures\": \"Gene\", \"wasp_conditional\": {\"waspOutputMode\": \"\", \"__current_case__\": 1}, \"filter\": {\"filter_type\": \"no_filter\", \"__current_case__\": 3, \"output_raw\": \"true\"}, \"soloOutFormatFeaturesGeneField3\": \"Gene Expression\", \"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\", \"GX\", \"GN\", \"CB\", \"UB\"], \"quantModeGene\": true, \"outSAMunmapped\": false, \"outSAMmapqUnique\": \"60\", \"junction_limits\": {\"limitOutSJoneRead\": \"1000\", \"limitOutSJcollapsed\": \"1000000\", \"limitSjdbInsertNsj\": \"1000000\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.7.11a+galaxy1",
"type": "tool",
"uuid": "cef740b0-fa95-4542-b08f-dbfca4bfb3e5",
"when": null,
@@ -294,7 +294,7 @@
},
"6": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 6,
"input_connections": {
@@ -311,13 +311,13 @@
"label": "multiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -331,15 +331,15 @@
"output_name": "stats"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "a16bf20e-2bc9-45e7-a0a3-b5590212b973",
"when": null,
@@ -660,7 +660,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -705,7 +705,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -750,7 +750,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1001,8 +1001,8 @@
]
}
},
- "tags": "",
- "uuid": "415c1b14-3b63-4d27-8c34-42e452cb49f1"
+ "tags": [],
+ "uuid": "933626df-33e9-46ac-8206-d297a7fcb83a"
},
"tool_id": null,
"type": "subworkflow",
@@ -1020,6 +1020,6 @@
"tags": [
"#single-cell"
],
- "uuid": "19feac09-8db7-4e3f-9774-8b815918cfa7",
+ "uuid": "87f25ddb-a663-4582-9ec6-d0b4bef4109c",
"version": 2
}
\ No newline at end of file
diff --git a/workflows/transcriptomics/brew3r/BREW3R.ga b/workflows/transcriptomics/brew3r/BREW3R.ga
index 1c035db24..6f466b2c5 100644
--- a/workflows/transcriptomics/brew3r/BREW3R.ga
+++ b/workflows/transcriptomics/brew3r/BREW3R.ga
@@ -12,7 +12,7 @@
"format-version": "0.1",
"license": "GPL-3.0-or-later",
"name": "BREW3R",
- "release": "0.1",
+ "release": "0.2",
"report": {
"markdown": "\n# Workflow Execution Report\n\n## Workflow Inputs\n```galaxy\ninvocation_inputs()\n```\n\n## Workflow Outputs\n```galaxy\ninvocation_outputs()\n```\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n"
},
@@ -389,7 +389,7 @@
},
"9": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/brew3r_r/brew3r_r/1.0.2+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/brew3r_r/brew3r_r/1.0.2+galaxy1",
"errors": null,
"id": 9,
"input_connections": {
@@ -428,15 +428,15 @@
"output_name": "output"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/brew3r_r/brew3r_r/1.0.2+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/brew3r_r/brew3r_r/1.0.2+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "3198f52bffaa",
+ "changeset_revision": "d3b0390f325f",
"name": "brew3r_r",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"exclude_pattern\": \"\", \"filter_unstranded\": {\"__class__\": \"ConnectedValue\"}, \"gtf_to_extend\": {\"__class__\": \"ConnectedValue\"}, \"gtf_to_overlap\": {\"__class__\": \"ConnectedValue\"}, \"no_add\": false, \"sup_output\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.0.2+galaxy0",
+ "tool_version": "1.0.2+galaxy1",
"type": "tool",
"uuid": "c6a1e810-55f4-4c0e-9f19-d162503edbf0",
"when": null,
diff --git a/workflows/transcriptomics/brew3r/CHANGELOG.md b/workflows/transcriptomics/brew3r/CHANGELOG.md
index 7a859c1bf..86b175116 100644
--- a/workflows/transcriptomics/brew3r/CHANGELOG.md
+++ b/workflows/transcriptomics/brew3r/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## [0.2] 2024-10-07
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/iuc/brew3r_r/brew3r_r/1.0.2+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/brew3r_r/brew3r_r/1.0.2+galaxy1`
+
## [0.1] 2024-06-17
First release.
diff --git a/workflows/transcriptomics/rnaseq-pe/CHANGELOG.md b/workflows/transcriptomics/rnaseq-pe/CHANGELOG.md
index 80585c158..64d12ef64 100644
--- a/workflows/transcriptomics/rnaseq-pe/CHANGELOG.md
+++ b/workflows/transcriptomics/rnaseq-pe/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [0.9] 2024-09-23
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0`
+
## [0.8] 2024-07-15
### Automatic update
diff --git a/workflows/transcriptomics/rnaseq-pe/rnaseq-pe-tests.yml b/workflows/transcriptomics/rnaseq-pe/rnaseq-pe-tests.yml
index 4b3b223bc..76be417ce 100644
--- a/workflows/transcriptomics/rnaseq-pe/rnaseq-pe-tests.yml
+++ b/workflows/transcriptomics/rnaseq-pe/rnaseq-pe-tests.yml
@@ -45,23 +45,11 @@
value: 89048730
delta: 8000000
'MultiQC on input dataset(s): Stats':
- element_tests:
- cutadapt:
- asserts:
- has_text:
- text: "1057657 25033 25779 25250 1032407 78266618 3650637 73538382 6.041191149974054"
- general_stats:
- asserts:
- has_text:
- text: "GSM461177 82.8 854812.0"
- sources:
- asserts:
- has_n_lines:
- n: 4
- star:
- asserts:
- has_text_matching:
- expression: "GSM461177 1032407.0 71.0 854812.0 82.8 70.65 10276[23].0 102412.0 1020[34][0-9].0 679.0 20.0 24.0 0.54 0.0 1.56 0.0 1.43 82072.0 7.95 32881.0 3.18 0.0 5.9 0.17 0 60888 1754"
+ asserts:
+ has_line:
+ line: "Sample STAR_mqc_generalstats_star_total_reads_1 STAR_mqc_generalstats_star_mapped_1 STAR_mqc_generalstats_star_mapped_percent_1 STAR_mqc_generalstats_star_uniquely_mapped_1 STAR_mqc_generalstats_star_uniquely_mapped_percent_1 STAR_mqc_generalstats_star_multimapped_1 Cutadapt_mqc_generalstats_cutadapt_percent_trimmed"
+ has_text_matching:
+ expression: "GSM461177\t1.0[0-9]*\t0.93[0-9]*\t90.[0-9]*\t0.8[0-9]*\t82.8[0-9]*\t0.08[0-9]*\t6.0[0-9]*"
MultiQC webpage:
asserts:
- that: "has_text"
diff --git a/workflows/transcriptomics/rnaseq-pe/rnaseq-pe.ga b/workflows/transcriptomics/rnaseq-pe/rnaseq-pe.ga
index 22f14d9eb..ca98e047a 100644
--- a/workflows/transcriptomics/rnaseq-pe/rnaseq-pe.ga
+++ b/workflows/transcriptomics/rnaseq-pe/rnaseq-pe.ga
@@ -11,7 +11,7 @@
],
"format-version": "0.1",
"license": "MIT",
- "release": "0.8",
+ "release": "0.9",
"name": "RNAseq_PE",
"steps": {
"0": {
@@ -259,7 +259,7 @@
},
"9": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
"id": 9,
"input_connections": {
@@ -315,15 +315,15 @@
"output_name": "report"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "aa784cb3810d",
+ "changeset_revision": "5eb7e84243f2",
"name": "cutadapt",
"owner": "lparsons",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": false, \"no_match_adapter_wildcards\": true, \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"15\", \"minimum_length2\": null, \"maximum_length\": null, \"maximum_length2\": null, \"max_n\": null, \"max_expected_errors\": null, \"max_average_error_rate\": null, \"discard_casava\": false, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Please use: For R1: - For Nextera: CTGTCTCTTATACACATCTCCGAGCCCACGAGAC - For TrueSeq: GATCGGAAGAGCACACGTCTGAACTCCAGTCAC or AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC\", \"adapter\": {\"__class__\": \"ConnectedValue\"}}, \"single_noindels\": false}], \"front_adapters\": [], \"anywhere_adapters\": []}, \"r2\": {\"adapters2\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Please use: For R2: - For Nextera: CTGTCTCTTATACACATCTGACGCTGCCGACGA - For TruSeq: GATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT or AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT\", \"adapter\": {\"__class__\": \"ConnectedValue\"}}, \"single_noindels\": false}], \"front_adapters2\": [], \"anywhere_adapters2\": []}, \"pair_adapters\": false}, \"other_trimming_options\": {\"cut\": \"0\", \"cut2\": \"0\", \"quality_cutoff\": \"30\", \"quality_cutoff2\": \"\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"poly_a\": false, \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"shorten_options_r2\": {\"shorten_values_r2\": \"False\", \"__current_case__\": 1}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"strip_suffix\": \"\", \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "4.9+galaxy0",
+ "tool_version": "4.9+galaxy1",
"type": "tool",
"uuid": "bb78142b-c185-40a6-b7c5-4fa9f6b3d314",
"when": null,
@@ -526,7 +526,7 @@
},
"14": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy1",
"errors": null,
"id": 14,
"input_connections": {
@@ -616,15 +616,15 @@
"output_name": "splice_junctions"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "b0f2be869d6d",
+ "changeset_revision": "4014de1b6daf",
"name": "rgrnastar",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"algo\": {\"params\": {\"settingsType\": \"full\", \"__current_case__\": 3, \"seed\": {\"seedSearchStartLmax\": \"50\", \"seedSearchStartLmaxOverLread\": \"1.0\", \"seedSearchLmax\": \"0\", \"seedMultimapNmax\": \"10000\", \"seedPerReadNmax\": \"1000\", \"seedPerWindowNmax\": \"50\", \"seedNoneLociPerWindow\": \"10\"}, \"align\": {\"alignIntronMin\": \"20\", \"alignIntronMax\": \"1000000\", \"alignMatesGapMax\": \"1000000\", \"alignSJoverhangMin\": \"8\", \"alignSJstitchMismatchNmax\": {\"alignSJstitchMismatchNmax1\": \"0\", \"alignSJstitchMismatchNmax2\": \"-1\", \"alignSJstitchMismatchNmax3\": \"0\", \"alignSJstitchMismatchNmax4\": \"0\"}, \"alignSJDBoverhangMin\": \"1\", \"alignSplicedMateMapLmin\": \"0\", \"alignSplicedMateMapLminOverLmate\": \"0.66\", \"alignWindowsPerReadNmax\": \"10000\", \"alignTranscriptsPerWindowNmax\": \"100\", \"alignTranscriptsPerReadNmax\": \"10000\", \"alignEndsType\": \"Local\", \"peOverlapNbasesMin\": \"0\", \"peOverlapMMp\": \"0.01\"}, \"chim_settings\": {\"chimSegmentMin\": \"12\", \"chimScoreMin\": \"0\", \"chimScoreDropMax\": \"20\", \"chimScoreSeparation\": \"10\", \"chimScoreJunctionNonGTAG\": \"-1\", \"chimJunctionOverhangMin\": \"20\", \"chimSegmentReadGapMax\": \"0\", \"chimFilter\": true, \"chimMainSegmentMultNmax\": \"10\", \"chimMultimapNmax\": \"1\", \"chimMultimapScoreRange\": \"1\"}, \"junction_limits\": {\"limitOutSJoneRead\": \"1000\", \"limitOutSJcollapsed\": \"1000000\", \"limitSjdbInsertNsj\": \"1000000\"}}}, \"chimOutType\": \"\", \"filter\": {\"basic_filters\": [\"exclude_unmapped\"], \"output_params2\": {\"output_select2\": \"yes\", \"__current_case__\": 0, \"outFilterType\": true, \"outFilterMultimapScoreRange\": \"1\", \"outFilterMultimapNmax\": \"20\", \"outFilterMismatchNmax\": \"999\", \"outFilterMismatchNoverLmax\": \"0.3\", \"outFilterMismatchNoverReadLmax\": \"0.04\", \"outFilterScoreMin\": \"0\", \"outFilterScoreMinOverLread\": \"0.66\", \"outFilterMatchNmin\": \"0\", \"outFilterMatchNminOverLread\": \"0.66\", \"outSAMmultNmax\": \"-1\", \"outSAMtlen\": \"1\"}}, \"oformat\": {\"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\"], \"HI_offset\": \"1\", \"outSAMprimaryFlag\": \"OneBestScore\", \"outSAMmapqUnique\": \"255\"}, \"outWig\": {\"outWigType\": \"bedGraph\", \"__current_case__\": 1, \"outWigTypeSecondWord\": \"\", \"outWigStrand\": true, \"outWigReferencesPrefix\": \"-\", \"outWigNorm\": true}, \"perf\": {\"outBAMsortingBinsN\": \"50\", \"winAnchorMultimapNmax\": \"50\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfile\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfeatureExon\": \"exon\", \"sjdbOverhang\": \"100\", \"quantmode_output\": {\"quantMode\": \"GeneCounts\", \"__current_case__\": 1}}}, \"singlePaired\": {\"sPaired\": \"paired_collection\", \"__current_case__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"twopass\": {\"twopassMode\": \"None\", \"__current_case__\": 0, \"twopass_read_subset\": \"\", \"sj_precalculated\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.7.11a+galaxy0",
+ "tool_state": "{\"algo\": {\"params\": {\"settingsType\": \"full\", \"__current_case__\": 3, \"seed\": {\"seedSearchStartLmax\": \"50\", \"seedSearchStartLmaxOverLread\": \"1.0\", \"seedSearchLmax\": \"0\", \"seedMultimapNmax\": \"10000\", \"seedPerReadNmax\": \"1000\", \"seedPerWindowNmax\": \"50\", \"seedNoneLociPerWindow\": \"10\"}, \"align\": {\"alignIntronMin\": \"20\", \"alignIntronMax\": \"1000000\", \"alignMatesGapMax\": \"1000000\", \"alignSJoverhangMin\": \"8\", \"alignSJstitchMismatchNmax\": {\"alignSJstitchMismatchNmax1\": \"0\", \"alignSJstitchMismatchNmax2\": \"-1\", \"alignSJstitchMismatchNmax3\": \"0\", \"alignSJstitchMismatchNmax4\": \"0\"}, \"alignSJDBoverhangMin\": \"1\", \"alignSplicedMateMapLmin\": \"0\", \"alignSplicedMateMapLminOverLmate\": \"0.66\", \"alignWindowsPerReadNmax\": \"10000\", \"alignTranscriptsPerWindowNmax\": \"100\", \"alignTranscriptsPerReadNmax\": \"10000\", \"alignEndsType\": \"Local\", \"peOverlapNbasesMin\": \"0\", \"peOverlapMMp\": \"0.01\"}, \"chim_settings\": {\"chimSegmentMin\": \"12\", \"chimScoreMin\": \"0\", \"chimScoreDropMax\": \"20\", \"chimScoreSeparation\": \"10\", \"chimScoreJunctionNonGTAG\": \"-1\", \"chimJunctionOverhangMin\": \"20\", \"chimSegmentReadGapMax\": \"0\", \"chimFilter\": true, \"chimMainSegmentMultNmax\": \"10\", \"chimMultimapNmax\": \"1\", \"chimMultimapScoreRange\": \"1\"}, \"junction_limits\": {\"limitOutSJoneRead\": \"1000\", \"limitOutSJcollapsed\": \"1000000\", \"limitSjdbInsertNsj\": \"1000000\"}}}, \"chimOutType\": \"\", \"filter\": {\"basic_filters\": [\"exclude_unmapped\"], \"output_params2\": {\"output_select2\": \"yes\", \"__current_case__\": 0, \"outFilterType\": true, \"outFilterMultimapScoreRange\": \"1\", \"outFilterMultimapNmax\": \"20\", \"outFilterMismatchNmax\": \"999\", \"outFilterMismatchNoverLmax\": \"0.3\", \"outFilterMismatchNoverReadLmax\": \"0.04\", \"outFilterScoreMin\": \"0\", \"outFilterScoreMinOverLread\": \"0.66\", \"outFilterMatchNmin\": \"0\", \"outFilterMatchNminOverLread\": \"0.66\", \"outSAMmultNmax\": \"-1\", \"outSAMtlen\": \"1\"}}, \"oformat\": {\"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\"], \"HI_offset\": \"1\", \"outSAMprimaryFlag\": \"OneBestScore\", \"outSAMmapqUnique\": \"255\", \"wasp_conditional\": {\"waspOutputMode\": \"\", \"__current_case__\": 1}}, \"outWig\": {\"outWigType\": \"bedGraph\", \"__current_case__\": 1, \"outWigTypeSecondWord\": \"\", \"outWigStrand\": true, \"outWigReferencesPrefix\": \"-\", \"outWigNorm\": true}, \"perf\": {\"outBAMsortingBinsN\": \"50\", \"winAnchorMultimapNmax\": \"50\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfile\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfeatureExon\": \"exon\", \"sjdbOverhang\": \"100\", \"quantmode_output\": {\"quantMode\": \"GeneCounts\", \"__current_case__\": 1}}}, \"singlePaired\": {\"sPaired\": \"paired_collection\", \"__current_case__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"twopass\": {\"twopassMode\": \"None\", \"__current_case__\": 0, \"twopass_read_subset\": \"\", \"sj_precalculated\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.7.11a+galaxy1",
"type": "tool",
"uuid": "8f30d1b2-6458-491b-bf46-9bdcca9db085",
"when": null,
@@ -648,7 +648,7 @@
},
"15": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 15,
"input_connections": {
@@ -669,10 +669,6 @@
"label": "MultiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "plots",
"type": "input"
@@ -680,6 +676,10 @@
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -693,15 +693,15 @@
"output_name": "plots"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "da516e4c-e074-4930-a6f8-a68d9844d386",
"when": null,
@@ -897,7 +897,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1055,7 +1055,7 @@
}
},
"tags": [],
- "uuid": "c548dfba-fd18-4f89-bba4-722f9a1cc300"
+ "uuid": "fdfcabc8-5014-4574-85ab-0182cb11750f"
},
"tool_id": null,
"type": "subworkflow",
@@ -1385,7 +1385,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1434,7 +1434,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1634,7 +1634,7 @@
}
},
"tags": [],
- "uuid": "3d850804-e1e9-4517-8f33-ecba0c527b73"
+ "uuid": "879fffe0-897e-44c2-af76-934f0a79534c"
},
"tool_id": null,
"type": "subworkflow",
@@ -1802,7 +1802,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
diff --git a/workflows/transcriptomics/rnaseq-sr/CHANGELOG.md b/workflows/transcriptomics/rnaseq-sr/CHANGELOG.md
index d87e3c0e8..389e9e12d 100644
--- a/workflows/transcriptomics/rnaseq-sr/CHANGELOG.md
+++ b/workflows/transcriptomics/rnaseq-sr/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [0.9] 2024-09-23
+
+### Automatic update
+- `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy1`
+- `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0`
+
## [0.8] 2024-07-15
### Automatic update
diff --git a/workflows/transcriptomics/rnaseq-sr/rnaseq-sr-tests.yml b/workflows/transcriptomics/rnaseq-sr/rnaseq-sr-tests.yml
index 2c0d813b7..6be85c478 100644
--- a/workflows/transcriptomics/rnaseq-sr/rnaseq-sr-tests.yml
+++ b/workflows/transcriptomics/rnaseq-sr/rnaseq-sr-tests.yml
@@ -34,24 +34,12 @@
has_size:
value: 43037033
delta: 4000000
- 'MultiQC on input dataset(s): Stats':
- element_tests:
- cutadapt:
- asserts:
- has_text:
- text: "\t1057657\t25033\t6191\t1051466\t39133309\t1439589\t37547108\t4.053327051898423"
- general_stats:
- asserts:
- has_text:
- text: "GSM461177\t82.86\t871202.0\t4.053327051898423"
- sources:
- asserts:
- has_n_lines:
- n: 4
- star:
- asserts:
- has_text_matching:
- expression: "GSM461177\t1051466.0\t35.0\t871202.0\t82.86\t35.4\t51184.0\t50995.0\t50810.0\t343.0\t12.0\t19.0\t0.48\t0.0\t1.48\t0.0\t1.36\t9180[89].0\t8.73\t34515.0\t3.28\t0.0\t4.76\t0.37\t0\t5005[01]\t3890"
+ 'MultiQC on input dataset(s): Stats':
+ asserts:
+ has_line:
+ line: "Sample STAR_mqc_generalstats_star_total_reads_1 STAR_mqc_generalstats_star_mapped_1 STAR_mqc_generalstats_star_mapped_percent_1 STAR_mqc_generalstats_star_uniquely_mapped_1 STAR_mqc_generalstats_star_uniquely_mapped_percent_1 STAR_mqc_generalstats_star_multimapped_1 Cutadapt_mqc_generalstats_cutadapt_percent_trimmed"
+ has_text_matching:
+ expression: "GSM461177\t1.0[0-9]*\t0.96[0-9]*\t91.[0-9]*\t0.8[0-9]*\t82.8[0-9]*\t0.091[0-9]*\t4.0[0-9]*"
MultiQC webpage:
asserts:
- that: "has_text"
diff --git a/workflows/transcriptomics/rnaseq-sr/rnaseq-sr.ga b/workflows/transcriptomics/rnaseq-sr/rnaseq-sr.ga
index b18022f50..509d68a0d 100644
--- a/workflows/transcriptomics/rnaseq-sr/rnaseq-sr.ga
+++ b/workflows/transcriptomics/rnaseq-sr/rnaseq-sr.ga
@@ -12,7 +12,7 @@
"format-version": "0.1",
"license": "MIT",
"name": "RNAseq_SR",
- "release": "0.8",
+ "release": "0.9",
"steps": {
"0": {
"annotation": "Should be a list of single-read RNA-seq fastqs",
@@ -232,7 +232,7 @@
},
"8": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"errors": null,
"id": 8,
"input_connections": {
@@ -284,15 +284,15 @@
"output_name": "report"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "aa784cb3810d",
+ "changeset_revision": "5eb7e84243f2",
"name": "cutadapt",
"owner": "lparsons",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
"tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adapter_options\": {\"action\": \"trim\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": false, \"no_match_adapter_wildcards\": true, \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"15\", \"minimum_length2\": null, \"maximum_length\": null, \"maximum_length2\": null, \"max_n\": null, \"max_expected_errors\": null, \"max_average_error_rate\": null, \"discard_casava\": false, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Please use: For R1: - For Nextera: CTGTCTCTTATACACATCTCCGAGCCCACGAGAC - For TrueSeq: GATCGGAAGAGCACACGTCTGAACTCCAGTCAC or AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC\", \"adapter\": {\"__class__\": \"ConnectedValue\"}}, \"single_noindels\": false}], \"front_adapters\": [], \"anywhere_adapters\": []}}, \"other_trimming_options\": {\"cut\": \"0\", \"cut2\": \"0\", \"quality_cutoff\": \"30\", \"quality_cutoff2\": \"\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"poly_a\": false, \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"shorten_options_r2\": {\"shorten_values_r2\": \"False\", \"__current_case__\": 1}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"strip_suffix\": \"\", \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "4.9+galaxy0",
+ "tool_version": "4.9+galaxy1",
"type": "tool",
"uuid": "4d39b70d-c852-4c42-9e0d-f3641d632543",
"when": null,
@@ -495,7 +495,7 @@
},
"13": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy1",
"errors": null,
"id": 13,
"input_connections": {
@@ -585,15 +585,15 @@
"output_name": "splice_junctions"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "b0f2be869d6d",
+ "changeset_revision": "4014de1b6daf",
"name": "rgrnastar",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"algo\": {\"params\": {\"settingsType\": \"full\", \"__current_case__\": 3, \"seed\": {\"seedSearchStartLmax\": \"50\", \"seedSearchStartLmaxOverLread\": \"1.0\", \"seedSearchLmax\": \"0\", \"seedMultimapNmax\": \"10000\", \"seedPerReadNmax\": \"1000\", \"seedPerWindowNmax\": \"50\", \"seedNoneLociPerWindow\": \"10\"}, \"align\": {\"alignIntronMin\": \"20\", \"alignIntronMax\": \"1000000\", \"alignMatesGapMax\": \"1000000\", \"alignSJoverhangMin\": \"8\", \"alignSJstitchMismatchNmax\": {\"alignSJstitchMismatchNmax1\": \"0\", \"alignSJstitchMismatchNmax2\": \"-1\", \"alignSJstitchMismatchNmax3\": \"0\", \"alignSJstitchMismatchNmax4\": \"0\"}, \"alignSJDBoverhangMin\": \"1\", \"alignSplicedMateMapLmin\": \"0\", \"alignSplicedMateMapLminOverLmate\": \"0.66\", \"alignWindowsPerReadNmax\": \"10000\", \"alignTranscriptsPerWindowNmax\": \"100\", \"alignTranscriptsPerReadNmax\": \"10000\", \"alignEndsType\": \"Local\", \"peOverlapNbasesMin\": \"0\", \"peOverlapMMp\": \"0.01\"}, \"chim_settings\": {\"chimSegmentMin\": \"12\", \"chimScoreMin\": \"0\", \"chimScoreDropMax\": \"20\", \"chimScoreSeparation\": \"10\", \"chimScoreJunctionNonGTAG\": \"-1\", \"chimJunctionOverhangMin\": \"20\", \"chimSegmentReadGapMax\": \"0\", \"chimFilter\": true, \"chimMainSegmentMultNmax\": \"10\", \"chimMultimapNmax\": \"1\", \"chimMultimapScoreRange\": \"1\"}, \"junction_limits\": {\"limitOutSJoneRead\": \"1000\", \"limitOutSJcollapsed\": \"1000000\", \"limitSjdbInsertNsj\": \"1000000\"}}}, \"chimOutType\": \"\", \"filter\": {\"basic_filters\": [\"exclude_unmapped\"], \"output_params2\": {\"output_select2\": \"yes\", \"__current_case__\": 0, \"outFilterType\": true, \"outFilterMultimapScoreRange\": \"1\", \"outFilterMultimapNmax\": \"20\", \"outFilterMismatchNmax\": \"999\", \"outFilterMismatchNoverLmax\": \"0.3\", \"outFilterMismatchNoverReadLmax\": \"0.04\", \"outFilterScoreMin\": \"0\", \"outFilterScoreMinOverLread\": \"0.66\", \"outFilterMatchNmin\": \"0\", \"outFilterMatchNminOverLread\": \"0.66\", \"outSAMmultNmax\": \"-1\", \"outSAMtlen\": \"1\"}}, \"oformat\": {\"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\"], \"HI_offset\": \"1\", \"outSAMprimaryFlag\": \"OneBestScore\", \"outSAMmapqUnique\": \"255\"}, \"outWig\": {\"outWigType\": \"bedGraph\", \"__current_case__\": 1, \"outWigTypeSecondWord\": \"\", \"outWigStrand\": true, \"outWigReferencesPrefix\": \"-\", \"outWigNorm\": true}, \"perf\": {\"outBAMsortingBinsN\": \"50\", \"winAnchorMultimapNmax\": \"50\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfile\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfeatureExon\": \"exon\", \"sjdbOverhang\": \"100\", \"quantmode_output\": {\"quantMode\": \"GeneCounts\", \"__current_case__\": 1}}}, \"singlePaired\": {\"sPaired\": \"single\", \"__current_case__\": 0, \"input1\": {\"__class__\": \"ConnectedValue\"}}, \"twopass\": {\"twopassMode\": \"None\", \"__current_case__\": 0, \"twopass_read_subset\": \"\", \"sj_precalculated\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "2.7.11a+galaxy0",
+ "tool_state": "{\"algo\": {\"params\": {\"settingsType\": \"full\", \"__current_case__\": 3, \"seed\": {\"seedSearchStartLmax\": \"50\", \"seedSearchStartLmaxOverLread\": \"1.0\", \"seedSearchLmax\": \"0\", \"seedMultimapNmax\": \"10000\", \"seedPerReadNmax\": \"1000\", \"seedPerWindowNmax\": \"50\", \"seedNoneLociPerWindow\": \"10\"}, \"align\": {\"alignIntronMin\": \"20\", \"alignIntronMax\": \"1000000\", \"alignMatesGapMax\": \"1000000\", \"alignSJoverhangMin\": \"8\", \"alignSJstitchMismatchNmax\": {\"alignSJstitchMismatchNmax1\": \"0\", \"alignSJstitchMismatchNmax2\": \"-1\", \"alignSJstitchMismatchNmax3\": \"0\", \"alignSJstitchMismatchNmax4\": \"0\"}, \"alignSJDBoverhangMin\": \"1\", \"alignSplicedMateMapLmin\": \"0\", \"alignSplicedMateMapLminOverLmate\": \"0.66\", \"alignWindowsPerReadNmax\": \"10000\", \"alignTranscriptsPerWindowNmax\": \"100\", \"alignTranscriptsPerReadNmax\": \"10000\", \"alignEndsType\": \"Local\", \"peOverlapNbasesMin\": \"0\", \"peOverlapMMp\": \"0.01\"}, \"chim_settings\": {\"chimSegmentMin\": \"12\", \"chimScoreMin\": \"0\", \"chimScoreDropMax\": \"20\", \"chimScoreSeparation\": \"10\", \"chimScoreJunctionNonGTAG\": \"-1\", \"chimJunctionOverhangMin\": \"20\", \"chimSegmentReadGapMax\": \"0\", \"chimFilter\": true, \"chimMainSegmentMultNmax\": \"10\", \"chimMultimapNmax\": \"1\", \"chimMultimapScoreRange\": \"1\"}, \"junction_limits\": {\"limitOutSJoneRead\": \"1000\", \"limitOutSJcollapsed\": \"1000000\", \"limitSjdbInsertNsj\": \"1000000\"}}}, \"chimOutType\": \"\", \"filter\": {\"basic_filters\": [\"exclude_unmapped\"], \"output_params2\": {\"output_select2\": \"yes\", \"__current_case__\": 0, \"outFilterType\": true, \"outFilterMultimapScoreRange\": \"1\", \"outFilterMultimapNmax\": \"20\", \"outFilterMismatchNmax\": \"999\", \"outFilterMismatchNoverLmax\": \"0.3\", \"outFilterMismatchNoverReadLmax\": \"0.04\", \"outFilterScoreMin\": \"0\", \"outFilterScoreMinOverLread\": \"0.66\", \"outFilterMatchNmin\": \"0\", \"outFilterMatchNminOverLread\": \"0.66\", \"outSAMmultNmax\": \"-1\", \"outSAMtlen\": \"1\"}}, \"oformat\": {\"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\"], \"HI_offset\": \"1\", \"outSAMprimaryFlag\": \"OneBestScore\", \"outSAMmapqUnique\": \"255\", \"wasp_conditional\": {\"waspOutputMode\": \"\", \"__current_case__\": 1}}, \"outWig\": {\"outWigType\": \"bedGraph\", \"__current_case__\": 1, \"outWigTypeSecondWord\": \"\", \"outWigStrand\": true, \"outWigReferencesPrefix\": \"-\", \"outWigNorm\": true}, \"perf\": {\"outBAMsortingBinsN\": \"50\", \"winAnchorMultimapNmax\": \"50\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfile\": {\"__class__\": \"ConnectedValue\"}, \"sjdbGTFfeatureExon\": \"exon\", \"sjdbOverhang\": \"100\", \"quantmode_output\": {\"quantMode\": \"GeneCounts\", \"__current_case__\": 1}}}, \"singlePaired\": {\"sPaired\": \"single\", \"__current_case__\": 0, \"input1\": {\"__class__\": \"ConnectedValue\"}}, \"twopass\": {\"twopassMode\": \"None\", \"__current_case__\": 0, \"twopass_read_subset\": \"\", \"sj_precalculated\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "2.7.11a+galaxy1",
"type": "tool",
"uuid": "8a26e154-29c0-426a-b0aa-215192f03596",
"when": null,
@@ -617,7 +617,7 @@
},
"14": {
"annotation": "",
- "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"errors": null,
"id": 14,
"input_connections": {
@@ -638,10 +638,6 @@
"label": "MultiQC",
"name": "MultiQC",
"outputs": [
- {
- "name": "stats",
- "type": "input"
- },
{
"name": "plots",
"type": "input"
@@ -649,6 +645,10 @@
{
"name": "html_report",
"type": "html"
+ },
+ {
+ "name": "stats",
+ "type": "tabular"
}
],
"position": {
@@ -662,15 +662,15 @@
"output_name": "plots"
}
},
- "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1",
+ "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.24.1+galaxy0",
"tool_shed_repository": {
- "changeset_revision": "abfd8a6544d7",
+ "changeset_revision": "f7e2f1eb3a16",
"name": "multiqc",
"owner": "iuc",
"tool_shed": "toolshed.g2.bx.psu.edu"
},
- "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
- "tool_version": "1.11+galaxy1",
+ "tool_state": "{\"comment\": \"\", \"export\": true, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}",
+ "tool_version": "1.24.1+galaxy0",
"type": "tool",
"uuid": "ba4d9ac2-f8b6-43bc-bc5f-e542c44441cd",
"when": null,
@@ -866,7 +866,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1024,7 +1024,7 @@
}
},
"tags": [],
- "uuid": "0af80b84-9ced-41d5-8315-40dfe8c1b638"
+ "uuid": "d629f889-14c9-4a3f-bf9f-1b31117e3191"
},
"tool_id": null,
"type": "subworkflow",
@@ -1354,7 +1354,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1403,7 +1403,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"
@@ -1603,7 +1603,7 @@
}
},
"tags": [],
- "uuid": "7bf438af-cb14-4fd2-ba15-2e86b44ed0cb"
+ "uuid": "f97bb6df-6f4c-4ccd-8108-6b2d88f35ff4"
},
"tool_id": null,
"type": "subworkflow",
@@ -1771,7 +1771,7 @@
},
"tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1",
"tool_shed_repository": {
- "changeset_revision": "fbf99087e067",
+ "changeset_revision": "86755160afbf",
"name": "text_processing",
"owner": "bgruening",
"tool_shed": "toolshed.g2.bx.psu.edu"