-
Notifications
You must be signed in to change notification settings - Fork 0
/
specify_pars.R
88 lines (59 loc) · 2.35 KB
/
specify_pars.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
################################################################################
#
# this file is used to specify model parameters
#
########################################################################################
########################################################
############## MODEL PARAMETERS ############################
########################################################
set.seed(myseed)
MCMC_par=Params=list()
#### number of samples
Params$T0= ncol(D)
#### number of genes
Params$J=nrow(D)
#### maximum number of copy
Params$max_CN=4
#### maximum number of mutant copies
Params$max_mut=2
##### hyper parameter of F: theta
Params$r=1.5
##### hyper parameter of pi
Params$a_pi=10^4
Params$b_pi=1
##### hyper parameter in prior of Z: prob of gaining one mutant allele
Params$zeta=10^-2
##### read depth parameter
Params$phi=phi
########################################################
############## get segments ############################
########################################################
if(is.null(segments)){
cat("Genome segment information not found. Generating segments using loci position and total reads\n")
if(is.null(mut_loc)){
stop("Loci position information not found, cannot call segments")
}
segments=CallSeg(D,mut_loc,foldername)
}
Params$segments=segments
########################################################
############ specify MCMC parameters ##################
########################################################
MCMC_par$burnin=4000 # burnin sample size
MCMC_par$Nsamp=4000 # number of samples for inference
MCMC_par$Ntune=2000 # number of samples used for adaptive parameter tuning
MCMC_par$swap_interval=30 # make Matroplis Hastings move in every how many samples
MCMC_par$Nchain=5 # number of paralel chains
MCMC_par$delta_T=0.35
Temperature=seq(1,by=MCMC_par$delta_T,length.out = MCMC_par$Nchain ) # temperatures
######################################################
############## adaptive tuning parameter ##############
######################################################
adapt_par=list(theta_tune=6)
adapt_par=lapply(c(1:MCMC_par$Nchain),function(x){adapt_par})
######################################################
########## sequence of candidate Ks ##########
######################################################
# candidate subclone numbers K
# need K >= 2
Nclone=c(3:7)