Skip to content

Commit

Permalink
suppress unneccassary warning while deleting temporary files.
Browse files Browse the repository at this point in the history
  • Loading branch information
lerch-a committed Dec 18, 2024
1 parent 98f6e96 commit 0a44908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/callHaplotypeDADA2.R
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ createFinalHaplotypTableDADA2 <- function(outputDir, sampleTable, markerTable, r
})
names(resultsLst) <- selMarker

file.remove(newFile) # list.files(filtDir,"fastq.gz"))
file.remove(filtDir)
suppressWarnings(file.remove(newFile)) # list.files(filtDir,"fastq.gz"))
suppressWarnings(file.remove(filtDir))
haplotyopList <- writeHaplotypList(resultsLst)

## check replicates
Expand Down

0 comments on commit 0a44908

Please sign in to comment.