--- a
+++ b/archives/RadETL/man/DcmFileModule.Rd
@@ -0,0 +1,43 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/DICOMFileModule.R
+\docType{data}
+\name{DcmFileModule}
+\alias{DcmFileModule}
+\title{DcmFileModule Class}
+\format{An object of class \code{R6ClassGenerator} of length 24.}
+\usage{
+DcmFileModule
+}
+\arguments{
+\item{path}{Path with DICOM image file}
+
+\item{savePathRoot}{Top path to store extracted metadata}
+}
+\description{
+This class creates a dataset by compressing a batch of DICOM files into a single RDS file.
+Each DICOM file is so large that it takes a lot of time to read it, and it is a function that extracts only its metadata.
+}
+\examples{
+############################# Example Code: Create DICOM RDS File ###################################
+
+# Path is directory folder
+path <- "~/Radiology/quer.ai_test"
+
+# savePathRoot is directory folder
+savePathRoot <- "~/Radiology/rds_test"
+
+# Parallel core
+core <- parallel::detectCores() - 1
+
+DFM <- DcmFileModule$new(path = path, savePathRoot = savePathRoot, core = core)
+
+# rootPathCount is a parameter that determines which of the current DICOM file paths to cut.
+# If you do not want to cut this parameter, you can omit this parameter.
+DFM$dcmToRDS(rootPathCount = 4)
+
+######################################## Example Code: END ##########################################
+}
+\author{
+Neon K.I.D
+}
+\keyword{datasets}