File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed
Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ addons:
1313cache :
1414 packages : true
1515
16+ python :
17+ - ' 3.7'
18+
19+ install :
20+ - pip install SigProfilerMatrixGenerator
21+
22+
1623warnings_are_errors : false
1724
1825script : R -f test.R
Original file line number Diff line number Diff line change 11library(devtools )
2- devtools :: install_github(" AlexandrovLab/SigProfilerMatrixGeneratorR@development" )
3- library(SigProfilerMatrixGeneratorR )
2+ install_github(" AlexandrovLab/SigProfilerMatrixGeneratorR@development" )
3+
4+ library(reticulate )
5+ py_config()
6+
7+ library(SigProfilerMatrixGeneratorR )
8+
9+ cnv <- CNVMatrixGenerator(" BATTENBERG" ,
10+ " ./test_data/CNV/Battenberg_test.tsv" ,
11+ " test_CNV" ,
12+ " ./test_data/output_CNV" )
13+
14+
15+ sv <- SVMatrixGenerator(" ./test_data/SV" ,
16+ " test_CNV" ,
17+ " ./test_data/output_SV" )
18+
You can’t perform that action at this time.
0 commit comments