|
@@ -152,13 +152,16 @@ contact_file_dump = as.list(system.file("extdata", sprintf("mat_chr%s_10kb_ob.tx
|
|
|
names(contact_file_dump) = chrs
|
|
|
|
|
|
# This will not compute sub-domains, but save the intermediate_data that can be used to compute sub-domains latter on
|
|
|
-CALDER_main(contact_mat_file,
|
|
|
- chr,
|
|
|
- bin_size,
|
|
|
- out_dir,
|
|
|
- sub_domains=FALSE,
|
|
|
- save_intermediate_data=TRUE,
|
|
|
- genome='hg19')
|
|
|
+CALDER(contact_file_dump=contact_file_dump,
|
|
|
+ chrs=chrs,
|
|
|
+ bin_size=50E3,
|
|
|
+ ref_genome=NULL,
|
|
|
+ feature_track=feature_track,
|
|
|
+ save_dir=save_dir,
|
|
|
+ save_intermediate_data=FALSE,
|
|
|
+ n_cores=2,
|
|
|
+ sub_domains=FALSE)
|
|
|
+
|
|
|
|
|
|
```
|
|
|
|