Skip to content

Commit

Permalink
add third column of user-specified impossible list
Browse files Browse the repository at this point in the history
  • Loading branch information
richardli committed Dec 15, 2022
1 parent 863b31a commit cd9983c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InSilicoVA/R/insilico_core.r
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ ParseResult <- function(N_sub.j, C.j, S.j, N_level.j, pool.j, fit){
ss <- match(impossible.combination[ii, 1], colnames(data)[-1])
cc <- match(impossible.combination[ii, 2], colnames(prob.orig))
if((!is.na(ss)) && (!is.na(cc))){
impossible <- rbind(impossible, c(as.integer(cc), as.integer(ss)))
impossible <- rbind(impossible, c(as.integer(cc), as.integer(ss), as.integer(impossible.combination[ii, 3])))
}
}
}else{
Expand Down

0 comments on commit cd9983c

Please sign in to comment.