Skip to content

Commit

Permalink
fixing passthrough for read_dicom_header
Browse files Browse the repository at this point in the history
  • Loading branch information
muschellij2 committed Sep 27, 2019
1 parent 997e2e9 commit cb5ae4a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: dcmtk
Type: Package
Title: Wrapper for 'DICOM' Toolkit ('DCMTK')
Version: 0.6.8
Version: 0.6.8.1
Author: John Muschelli
Maintainer: John Muschelli <muschellij2@gmail.com>
Description: Set of functions porting the
Expand Down
5 changes: 3 additions & 2 deletions R/read_dicom_header.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#' @param recursive logical indicating if the \code{--recurse} flag be passed to
#' \code{\link{dcmdump}}
#' @param path if \code{recursive = TRUE}, then this will the path scanned.
#' @param ... not used
#' @param ... passed to \code{\link{dcmdump}}
#'
#' @return Character vector of header information
#' @export
Expand Down Expand Up @@ -79,7 +79,8 @@ read_single_dicom_header = function(
}
}
hdr = dcmdump(file = file,
frontopts = opts)
frontopts = opts,
...)
hdr = enc2utf8(hdr)
hdr = parse_hdr(hdr)
if (replace_names) {
Expand Down
2 changes: 1 addition & 1 deletion man/read_dicom_header.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cb5ae4a

Please sign in to comment.