├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── testpack.yml ├── .gitignore ├── CHANGELOG.md ├── Datasets.doc.xml ├── Images └── MainConditionDistribution.png ├── LICENSE ├── Packages.md ├── README.md ├── SharedAssemblyInfo.cs ├── SynthEHR.Core ├── BucketList.cs ├── Datasets │ ├── Aggregates.zip │ ├── Appointment.cs │ ├── Biochemistry.cs │ ├── Biochemistry.sql │ ├── BiochemistryRecord.cs │ ├── CarotidArteryScan.cs │ ├── DataGenerator.cs │ ├── DataGeneratorFactory.cs │ ├── Demography.cs │ ├── DemographyAddress.cs │ ├── DemographyPostcode.cs │ ├── HospitalAdmissions.cs │ ├── HospitalAdmissions.sql │ ├── HospitalAdmissionsOperations.sql │ ├── HospitalAdmissionsRecord.cs │ ├── IDataGenerator.cs │ ├── Maternity.cs │ ├── Maternity.csv │ ├── MaternityRecord.cs │ ├── Prescribing.cs │ ├── PrescribingRecord.cs │ ├── UltraWide.cs │ └── Wide.cs ├── DateTimeExtensions.cs ├── Descriptions.cs ├── ExerciseTestData.cd ├── IPersonCollection.cs ├── Person.cs ├── PersonCollection.cs ├── RowsGeneratedEventArgs.cs ├── Statistics │ └── Distributions │ │ ├── IContinuousDistribution.cs │ │ ├── IDistribution.cs │ │ ├── IUnivariateDistribution.cs │ │ └── Normal.cs └── SynthEHR.Core.csproj ├── SynthEHR.sln ├── SynthEHR ├── Configuration │ ├── Config.cs │ └── TargetDatabase.cs ├── Program.cs ├── ProgramOptions.cs ├── Properties │ └── launchSettings.json ├── SynthEHR.csproj ├── SynthEHR.template.yaml └── runtimeconfig.template.json └── SynthEHRTests ├── BiochemistryTests.cs ├── BucketListTests.cs ├── DataGeneratorFactoryTests.cs ├── DescriptionsTests.cs ├── MaternityTests.cs ├── PackageListIsCorrectTests.cs ├── PersonTests.cs ├── SynthEHRTests.csproj ├── TestAdmissionTests.cs ├── TestGetDataTable.cs ├── UltraWideTests.cs └── WideTests.cs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/testpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/.github/workflows/testpack.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Datasets.doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/Datasets.doc.xml -------------------------------------------------------------------------------- /Images/MainConditionDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/Images/MainConditionDistribution.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/Packages.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/README.md -------------------------------------------------------------------------------- /SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /SynthEHR.Core/BucketList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/BucketList.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Aggregates.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Aggregates.zip -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Appointment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Appointment.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Biochemistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Biochemistry.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Biochemistry.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Biochemistry.sql -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/BiochemistryRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/BiochemistryRecord.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/CarotidArteryScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/CarotidArteryScan.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/DataGenerator.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/DataGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/DataGeneratorFactory.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Demography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Demography.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/DemographyAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/DemographyAddress.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/DemographyPostcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/DemographyPostcode.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/HospitalAdmissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/HospitalAdmissions.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/HospitalAdmissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/HospitalAdmissions.sql -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/HospitalAdmissionsOperations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/HospitalAdmissionsOperations.sql -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/HospitalAdmissionsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/HospitalAdmissionsRecord.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/IDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/IDataGenerator.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Maternity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Maternity.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Maternity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Maternity.csv -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/MaternityRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/MaternityRecord.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Prescribing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Prescribing.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/PrescribingRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/PrescribingRecord.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/UltraWide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/UltraWide.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Datasets/Wide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Datasets/Wide.cs -------------------------------------------------------------------------------- /SynthEHR.Core/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/DateTimeExtensions.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Descriptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Descriptions.cs -------------------------------------------------------------------------------- /SynthEHR.Core/ExerciseTestData.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/ExerciseTestData.cd -------------------------------------------------------------------------------- /SynthEHR.Core/IPersonCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/IPersonCollection.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Person.cs -------------------------------------------------------------------------------- /SynthEHR.Core/PersonCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/PersonCollection.cs -------------------------------------------------------------------------------- /SynthEHR.Core/RowsGeneratedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/RowsGeneratedEventArgs.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Statistics/Distributions/IContinuousDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Statistics/Distributions/IContinuousDistribution.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Statistics/Distributions/IDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Statistics/Distributions/IDistribution.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Statistics/Distributions/IUnivariateDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Statistics/Distributions/IUnivariateDistribution.cs -------------------------------------------------------------------------------- /SynthEHR.Core/Statistics/Distributions/Normal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/Statistics/Distributions/Normal.cs -------------------------------------------------------------------------------- /SynthEHR.Core/SynthEHR.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.Core/SynthEHR.Core.csproj -------------------------------------------------------------------------------- /SynthEHR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR.sln -------------------------------------------------------------------------------- /SynthEHR/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR/Configuration/Config.cs -------------------------------------------------------------------------------- /SynthEHR/Configuration/TargetDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR/Configuration/TargetDatabase.cs -------------------------------------------------------------------------------- /SynthEHR/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR/Program.cs -------------------------------------------------------------------------------- /SynthEHR/ProgramOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR/ProgramOptions.cs -------------------------------------------------------------------------------- /SynthEHR/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR/Properties/launchSettings.json -------------------------------------------------------------------------------- /SynthEHR/SynthEHR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR/SynthEHR.csproj -------------------------------------------------------------------------------- /SynthEHR/SynthEHR.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHR/SynthEHR.template.yaml -------------------------------------------------------------------------------- /SynthEHR/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "rollForwardOnNoCandidateFx": 2 3 | } -------------------------------------------------------------------------------- /SynthEHRTests/BiochemistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/BiochemistryTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/BucketListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/BucketListTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/DataGeneratorFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/DataGeneratorFactoryTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/DescriptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/DescriptionsTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/MaternityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/MaternityTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/PackageListIsCorrectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/PackageListIsCorrectTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/PersonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/PersonTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/SynthEHRTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/SynthEHRTests.csproj -------------------------------------------------------------------------------- /SynthEHRTests/TestAdmissionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/TestAdmissionTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/TestGetDataTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/TestGetDataTable.cs -------------------------------------------------------------------------------- /SynthEHRTests/UltraWideTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/UltraWideTests.cs -------------------------------------------------------------------------------- /SynthEHRTests/WideTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HicServices/SynthEHR/HEAD/SynthEHRTests/WideTests.cs --------------------------------------------------------------------------------