Skip to content

Commit

Permalink
Merge pull request #447 from gagneurlab/dev
Browse files Browse the repository at this point in the history
fix counting summary for only 1 external sample
  • Loading branch information
vyepez88 committed Apr 4, 2023
2 parents 50e89f9 + b353642 commit 4b5f780
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drop/modules/aberrant-splicing-pipeline/Counting/Summary.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ if(has_external){
localCountIDs <- colData(fdsMerge)[!as.logical(colData(fdsMerge)[,"isExternal"]),"sampleID"]

cts <- K(fdsMerge,"psi5")
ctsLocal<- cts[,localCountIDs]
ctsExt<- cts[,externalCountIDs]
ctsLocal<- cts[,localCountIDs,drop=FALSE]
ctsExt<- cts[,externalCountIDs,drop=FALSE]

rowMeanLocal <- rowMeans(ctsLocal)
rowMeanExt <- rowMeans(ctsExt)
Expand Down

0 comments on commit 4b5f780

Please sign in to comment.