initial commit

This commit is contained in:
Edmond Gebara 2026-07-05 10:34:15 +02:00
commit 87f047f909
54 changed files with 1113120 additions and 0 deletions

37
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,37 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "clean-workdirs",
"type": "process",
"command": "pwsh",
"args": [
"-NoProfile",
"-Command",
"Get-ChildItem -Path '${workspaceFolder}/Data/${input:institute}/Tmp','${workspaceFolder}/Data/${input:institute}/Out' -ErrorAction SilentlyContinue | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue; exit 0"
],
"problemMatcher": []
},
{
"label": "normalize-output",
"type": "process",
"command": "pwsh",
"args": [
"-NoProfile",
"-File",
"${workspaceFolder}/normalize-output.ps1",
"-Directory",
"${workspaceFolder}/Data/${input:institute}/Out"
],
"problemMatcher": []
}
],
"inputs": [
{
"id": "institute",
"type": "promptString",
"description": "Institut (z.B. R125)",
"default": "R125"
}
]
}