-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow external definitions #10
Comments
Detailed description Allow external definitions in adtl. Two kinds of external definitions are supported:
Example of including an external definition: [adtl]
include_defs = ["./country.toml"] This will add the [countryMap.values]
1 = "ALB"
2 = "ZZZ" Similarly, RELSUB files for clinical data are mappings from the visit IDs to subject IDs and should be used in a similar way as adtl parsers/someparser.toml data.csv --def relsub.json Assuming { "RELSUB":
{
"values": {
"S-001": 1,
"S-002": 2,
"S-003": 3,
}
}
} this will create a RELSUB reference that within the adtl parser that can be used like any other reference. |
We should be able to lookup from an external data source. Use cases for this functionality:
The text was updated successfully, but these errors were encountered: