Moved actual tool definition to submodule
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit

This commit is contained in:
2025-02-25 21:45:31 +00:00
parent 61f44f8338
commit a622c5c52c
5 changed files with 7 additions and 18 deletions

View File

@@ -2,6 +2,7 @@
"recommendations": [
"mechatroner.rainbow-csv",
"redhat.vscode-xml",
"ms-vscode.live-server"
"ms-vscode.live-server",
"davelopez.galaxy-tools"
]
}

6
.vscode/tasks.json vendored
View File

@@ -6,19 +6,19 @@
{
"label": "lint",
"type": "shell",
"command": "planemo lint",
"command": "planemo lint auto-updated-tools-iuc/tools/autobigs",
"problemMatcher": []
},
{
"label": "serve",
"type": "shell",
"command": "planemo serve",
"command": "planemo serve auto-updated-tools-iuc/tools/autobigs",
"problemMatcher": []
},
{
"label": "run tests",
"type": "shell",
"command": "planemo test autobigs-cli.xml --test_output_junit test_results/junit_results.xml --test_output_json test_results/results.json --test_output test_results/human.html",
"command": "planemo test auto-updated-tools-iuc/tools/autobigs/autobigs-cli.xml --test_output_junit test_results/junit_results.xml --test_output_json test_results/results.json --test_output test_results/human.html",
"problemMatcher": []
}
]