Skip to content

Commit

Permalink
Update VarTierDiseaseDBFalse.R
Browse files Browse the repository at this point in the history
  • Loading branch information
jylee-bcm authored Jul 30, 2024
1 parent 2279c84 commit 09eb380
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run/VarTierDiseaseDBFalse.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ args <- commandArgs(trailingOnly = TRUE)
refg <- args[2]

cat("STEP0. load database: OMIM inheritance ####\n")
omim_inheritance <- file.path(paste0("var_tier/", refg, "/genemap2.Inh.F.txt"))
omim_inheritance <- file.path(paste0('/run/data_dependencies/var_tier/',refg,'/genemap2.Inh.F.txt'))

in.f.path <- "/out/rami-test/"
out.f.path <- "/out/tier-test-false/"
Expand All @@ -41,7 +41,7 @@ anno.columns <- c(
"spliceAImax"
)

anno.orig <- readr::read_csv(in.f)
anno.orig <- readr::read_csv(file.path(in.f.path,in.f))
anno <- anno.orig[, anno.columns]

# rename the col
Expand Down Expand Up @@ -344,7 +344,7 @@ VEP.Tier.wInh$AR.matched <- ifelse(VEP.Tier.wInh$TierAR <= 2 &

write.table(
VEP.Tier.wInh,
out.f,
file.path(out.f.path,out.f),
sep = "\t",
quote = F,
col.names = T,
Expand Down

0 comments on commit 09eb380

Please sign in to comment.