https://github.com/TRON-Bioinformatics/seq2HLA
Raw File
Tip revision: 15dc4ef3962f55f3e7060336991f22dbd3d9c5c6 authored by Patrick Sorn on 21 August 2023, 14:26:55 UTC
Added Python 3 support; Updated dependencies
Tip revision: 15dc4ef
command_fourdigit.R
args <- commandArgs(trailingOnly = TRUE)

x<-unlist(strsplit(args[2],split=","))
x<-as.numeric(x)
#args[3]
paril<-1-pnorm(as.numeric(args[1]),mean(x),sd(x))
poutlier<-pbinom(0,length(x),paril)
1-poutlier

back to top