Initial work on wrapping AutoBIGS for Galaxy

This commit is contained in:
2025-02-13 21:46:36 +00:00
commit b3057a833c
10 changed files with 58542 additions and 0 deletions

8
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,8 @@
{
"recommendations": [
"davelopez.galaxy-tools",
"mechatroner.rainbow-csv",
"redhat.vscode-xml",
"ms-vscode.live-server"
]
}

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"galaxyTools.planemo.galaxyRoot": "galaxy-server"
}

13
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "lint",
"type": "shell",
"command": "planemo lint",
"problemMatcher": []
}
]
}