Skip to content

Commit

Permalink
Merge pull request #18 from christopher-mohr/development
Browse files Browse the repository at this point in the history
Extend cnv file pattern for read_cnv_data function
  • Loading branch information
apeltzer authored Feb 26, 2024
2 parents 62003c8 + 74e10fb commit 0e4248e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/cnv.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ new_cnv_output <- function(cnv_file_path, local_app=FALSE) {
read_cnv_data <- function(cnv_directory, local_app=FALSE){
cnv_files <- list.files(
path = cnv_directory,
pattern = "*CopyNumberVariants.vcf",
pattern = "*cnv.vcf|*CopyNumberVariants.vcf",
full.names = TRUE
)
cnv_data <- map(cnv_files, cnv, local_app) %>%
Expand Down

0 comments on commit 0e4248e

Please sign in to comment.