LoginSignup
1
0

More than 3 years have passed since last update.

CWLで特定のタグがついたテストだけ実行する

Posted at

概要

特定のタグがついたものだけをテストしたいときの方法について。
状況としては、ワークフローやコマンドラインツールのうち、
バージョンをあげたものだけ、テストしたいなど。

まとめ

--tags で、指定すればよい。
いくつかテストを書いていて、そのなかの、 samtools だけをテストしたいなら
--tags samtools

$ cwltest --test cwltest.yml --tags samtools
Test [1/1] A test for samtools view
All tests passed
$

samtoolsbwa の2つをテストしたいなら
--tags samtools,bwa で指定できる

$ cwltest --test cwltest.yml --tags samtools,bwa
Test [1/2] A test for bwa mem
Test [2/2] A test for samtools view
All tests passed
$
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0