Skip to content

Commit 31d194b

Browse files
committed
Added last files for deduplication
1 parent 9ddcb6f commit 31d194b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

coderbuild/broad_sanger/02-broadSangerOmics.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -668,9 +668,9 @@ main<-function(){
668668

669669
lapply(alltypes,function(dt){
670670
print(dt)
671-
temps<-sanger_files(sanger_filenames[[dt]],dt)|>tidyr::drop_na()
671+
temps<-sanger_files(sanger_filenames[[dt]],dt)|>tidyr::drop_na()|>dplyr::distinct()
672672
readr::write_csv(temps,file=paste0('/tmp/sanger_',dt,'.csv.gz'))
673-
tempd<-depmap_files(depmap_filenames[[dt]],dt)|>tidyr::drop_na()
673+
tempd<-depmap_files(depmap_filenames[[dt]],dt)|>tidyr::drop_na()|>dplyr::distinct()
674674
readr::write_csv(tempd,file=paste0('/tmp/broad_',dt,'.csv.gz'))
675675

676676
# readr::write_csv(rbind(tempd,temps),file=paste0('/tmp/broad_sanger_',dt,'.csv.gz'))

0 commit comments

Comments
 (0)