-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDESCRIPTION
73 lines (73 loc) · 2.16 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Package: fhircrackr
Type: Package
Title: Handling HL7 FHIR® Resources in R
Version: 2.2.0.9002
Date: 2025-01-24
Authors@R: c(
person( given = "Thomas",
family = "Peschel",
email = "[email protected]",
role = c("aut")),
person( given = "Julia",
family = "Palm",
email = "[email protected]",
role = c("aut","cre"),
comment=c(ORCID = "0000-0003-1568-5893")),
person( given = "Jens",
family = "Przybilla",
email = "[email protected]",
role = "aut"),
person( given = "Frank",
family = "Meineke",
email = "[email protected]",
role = "aut",
comment=c(ORCID = "0000-0002-9256-7543")))
Description: Useful tools for conveniently downloading FHIR resources in xml format
and converting them to R data.frames. The package uses FHIR-search to download bundles
from a FHIR server, provides functions to save and read xml-files containing such bundles
and allows flattening the bundles to data.frames using XPath expressions. FHIR® is the registered trademark
of HL7 and is used with the permission of HL7. Use of the FHIR trademark does not constitute endorsement of this product by HL7.
BugReports: https://github.com/POLAR-fhiR/fhircrackr/issues
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.3.2
Imports:
xml2,
stringr,
httr,
utils,
data.table,
methods,
parallel,
lifecycle,
rlang
Suggests:
knitr,
rmarkdown
VignetteBuilder: knitr
Roxygen: list(markdown = TRUE)
Config/testthat/edition: 3
Depends:
R (>= 4.1.0)
Collate:
'fhir_body.R'
'fhir_resource.R'
'fhir_url.R'
'fhir_bundle.R'
'fhir_bundle_list.R'
'build_resources.R'
'design.R'
'download_resources.R'
'fhir_xpath_expression.R'
'fhir_columns.R'
'fhir_resource_type.R'
'fhir_table_description.R'
'fhir_design.R'
'fhir_style.R'
'fhir_table_list.R'
'fhir_tree.R'
'flatten_resources.R'
'miscellaneous.R'
'multiple_entries.R'
'sample_resources.R'