Skip to content

Commit

Permalink
Merge pull request #456 from GoekeLab/singleExon_2
Browse files Browse the repository at this point in the history
min.txScore.singleExon bug fix
  • Loading branch information
SuiYue-2308 authored Jan 15, 2025
2 parents 314ec29 + 051480c commit 817e002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/bambu-extendAnnotations-utilityCombine.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ isore.combineTranscriptCandidates <- function(readClassList,
min.readCount, min.readFractionByGene,
min.txScore.multiExon, min.txScore.singleExon, verbose) %>% data.table()
combinedSplicedTranscripts[,confidenceType := "highConfidenceJunctionReads"]
if (min.txScore.singleExon < 1) {return(combinedSplicedTranscripts)}
if (min.txScore.singleExon == 1) {return(combinedSplicedTranscripts)}
combinedUnsplicedTranscripts <-
combineUnsplicedTranscriptModels(readClassList, bpParameters,
stranded, min.readCount, min.readFractionByGene,
Expand Down

0 comments on commit 817e002

Please sign in to comment.