41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
// 使用 IntelliSense 了解相关属性。
|
|
// 悬停以查看现有属性的描述。
|
|
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "bwa-mem",
|
|
"preLaunchTask": "Build",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/bwa",
|
|
"args": [
|
|
"mem",
|
|
"-t",
|
|
"1",
|
|
"-M",
|
|
"-R",
|
|
"'@RG\\tID:normal\\tSM:normal\\tPL:illumina\\tLB:normal\\tPG:bwa'",
|
|
"~/reference/human_g1k_v37_decoy.fasta",
|
|
"~/fastq/diff_r1.fq",
|
|
"~/fastq/diff_r2.fq",
|
|
"-o",
|
|
"/dev/null"
|
|
],
|
|
"cwd": "${workspaceFolder}", // 当前工作路径:当前文件所在的工作空间
|
|
},
|
|
{
|
|
"name": "index",
|
|
"preLaunchTask": "Build",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/bwa",
|
|
"args": [
|
|
"index",
|
|
"/mnt/d/data/reference/human_g1k_v37_decoy.fasta"
|
|
],
|
|
"cwd": "${workspaceFolder}", // 当前工作路径:当前文件所在的工作空间
|
|
}
|
|
]
|
|
} |