Skip to content

Commit

Permalink
fix dictPath
Browse files Browse the repository at this point in the history
  • Loading branch information
opitzl committed May 31, 2022
1 parent 88d032c commit 33802ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/app-countSpacer.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ezMethodCountSpacer = function(input=NA, output=NA, param=NA){

sampleName = input$getNames()
setwdNew(sampleName)
param[['dictPath']] = list.files(file.path('/srv/GT/databases/GEML/sgRNA_Libs/',param[['dictPath']]), pattern = 'csv', full.names = TRUE)
param[['dictPath']] = list.files(file.path('/srv/GT/databases/GEML/sgRNA_Libs/',param[['dictPath']]), pattern = 'final.csv', full.names = TRUE)
dict = ezRead.table(param[['dictPath']], header = FALSE, sep = ',', row.names = NULL)
colnames(dict) = c('TargetID', 'Sequence', 'GeneSymbol', 'isControl')
dict[['ID']] = paste(dict$TargetID, dict$Sequence, sep = '-')
Expand Down

0 comments on commit 33802ae

Please sign in to comment.