cwltoolをvscodeでデバッグする

cwltoolをVScodeでデバッグする

特別な設定はほとんどいらない

  1. virtualenvにいれている場合は、select interpretorで該当するvirutalenvを選ぶ
  2. virtualenvにcwltoolをいれる。もしくは、レポジトリ
  3. justMyCode: false を書く。これがないと、ライブラリのコードをとめることができない。

以下をデバッグしようとしたときの例

{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [


    {
      "name": "Python: cwltool module",
      "type": "python",
      "request": "launch",
      "module": "cwltool",
      "args": ["workflow-dyn-res.cwl"],
      "justMyCode": false

    },
    {
      "name": "Python: Current File",
      "type": "python",
      "request": "launch",
      "program": "${file}",
      "console": "integratedTerminal",
      "justMyCode": false
    },
    {
      "name": "Python: Current File with WF",
      "type": "python",
      "request": "launch",
      "program": "${file}",
      "console": "integratedTerminal",
      "args": ["workflow-dyn-res.cwl"],
      "justMyCode": false
    }
  ]
}
Written on October 12, 2021