Skip to content

Commit

Permalink
updated data mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
sgosline committed Apr 21, 2021
1 parent 369db8a commit 7a8879b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions simulatedData/mapSimDataMatrices.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,18 @@ main <- function(){
deconv.mat <- read.table(argv[1],header=T,row.names=1,sep='\t') #matrix to be fixed
sig.mat <- argv[2] #signature used to deconvolve matrix
sim.type <- argv[3] #type of simulation performed

if(sig.mat=='LM9.txt')
sig.mat<-basename(sig.mat)

if(sig.mat=='LM9.txt'){

}else if(sig.mat=='LM22.txt'){

}else if(sig.mat=='LM7c.txt'){

}else if(sig.mat=='PBMC'){

}

write.table(deconv.mat,file='fixed.tsv',sep='\t')
}

Expand Down

0 comments on commit 7a8879b

Please sign in to comment.