Skip to content

Commit

Permalink
Merge pull request #66 from msk-access/feature/fix_filter_call
Browse files Browse the repository at this point in the history
Update filter_calls.R Solves #66
  • Loading branch information
rhshah authored Jan 31, 2022
2 parents 069fbdd + 824c3d4 commit dcce96e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/filter_calls.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ filter_calls = function(
# compiling different genotype files from step 1
fillouts.dt <- do.call(rbind,lapply(fillouts.filenames,function(y){
sample.name = gsub('.*./|-ORG.*.','',y)
sample.type = sample.sheet[Sample_Barcode == sample.name]$Sample_Type
sample.type = unique(sample.sheet[Sample_Barcode == sample.name]$Sample_Type)

# t_alt_count,t_ref_count,t_depth these columns are useless, have to use duplex/simplex/standard columms
maf.file <- fread(y) %>%
Expand Down

0 comments on commit dcce96e

Please sign in to comment.