├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── QueryLibrary.Rproj ├── R └── ShinyApp.R ├── README.md ├── compare_versions ├── deploy.sh ├── extras ├── PackageMaintenance.R ├── QueryLibrary.pdf └── Test.R ├── inst ├── doc │ ├── UsingQueryLibrary.pdf │ └── UsingQueryLibrary.tex └── shinyApps │ └── QueryLibrary │ ├── .gitignore │ ├── about.md │ ├── global.R │ ├── helpers.R │ ├── markdownParse.R │ ├── queries │ ├── care_site │ │ ├── CS01.md │ │ └── CS02.md │ ├── condition │ │ ├── C01.md │ │ ├── C02.md │ │ ├── C03.md │ │ ├── C04.md │ │ ├── C05.md │ │ ├── C06.md │ │ ├── C07.md │ │ ├── C08.md │ │ ├── C09.md │ │ ├── C10.md │ │ └── C11.md │ ├── condition_era │ │ ├── CE01.md │ │ ├── CE02.md │ │ ├── CE03.md │ │ ├── CE04.md │ │ ├── CE05.md │ │ ├── CE06.md │ │ ├── CE07.md │ │ ├── CE08.md │ │ ├── CE09.md │ │ ├── CE10.md │ │ ├── CE11.md │ │ ├── CE12.md │ │ ├── CE13.md │ │ ├── CE16.md │ │ └── CE17.md │ ├── condition_occurence │ │ ├── CO01.md │ │ ├── CO02.md │ │ ├── CO03.md │ │ ├── CO04.md │ │ ├── CO05.md │ │ ├── CO06.md │ │ ├── CO07.md │ │ ├── CO08.md │ │ ├── CO09.md │ │ ├── CO10.md │ │ ├── CO11.md │ │ ├── CO12.md │ │ ├── CO13.md │ │ ├── CO14.md │ │ ├── CO15.md │ │ ├── CO16.md │ │ ├── CO17.md │ │ ├── CO18.md │ │ ├── CO19.md │ │ ├── CO20.md │ │ ├── CO21.md │ │ ├── CO22.md │ │ ├── CO23.md │ │ ├── CO24.md │ │ └── CO25.md │ ├── condition_occurrence_combinations │ │ ├── COC01.md │ │ ├── COC02.md │ │ ├── COC05.md │ │ ├── COC06.md │ │ ├── COC07.md │ │ ├── COC08.md │ │ ├── COC09.md │ │ ├── COC10.md │ │ └── COC11.md │ ├── drug │ │ ├── D01.md │ │ ├── D02.md │ │ ├── D03.md │ │ ├── D04.md │ │ ├── D05.md │ │ ├── D06.md │ │ ├── D07.md │ │ ├── D08.md │ │ ├── D09.md │ │ ├── D10.md │ │ ├── D11.md │ │ ├── D14.md │ │ ├── D15.md │ │ ├── D16.md │ │ ├── D17.md │ │ ├── D18.md │ │ ├── D19.md │ │ ├── D20.md │ │ ├── D22.md │ │ ├── D24.md │ │ ├── D25.md │ │ ├── D26.md │ │ └── D27.md │ ├── drug_cost │ │ ├── DRC01.md │ │ ├── DRC03.md │ │ └── DRC07.md │ ├── drug_era │ │ ├── DER01.md │ │ ├── DER02.md │ │ ├── DER03.md │ │ ├── DER04.md │ │ ├── DER05.md │ │ ├── DER06.md │ │ ├── DER07.md │ │ ├── DER08.md │ │ ├── DER09.md │ │ ├── DER10.md │ │ ├── DER11.md │ │ ├── DER12.md │ │ ├── DER13.md │ │ ├── DER14.md │ │ ├── DER15.md │ │ ├── DER16.md │ │ ├── DER17.md │ │ ├── DER18.md │ │ ├── DER21.md │ │ ├── DER23.md │ │ └── DER26.md │ ├── drug_exposure │ │ ├── DEX01.md │ │ ├── DEX02.md │ │ ├── DEX03.md │ │ ├── DEX04.md │ │ ├── DEX05.md │ │ ├── DEX06.md │ │ ├── DEX07.md │ │ ├── DEX08.md │ │ ├── DEX09.md │ │ ├── DEX10.md │ │ ├── DEX11.md │ │ ├── DEX12.md │ │ ├── DEX13.md │ │ ├── DEX14.md │ │ ├── DEX15.md │ │ ├── DEX16.md │ │ ├── DEX17.md │ │ ├── DEX18.md │ │ ├── DEX19.md │ │ ├── DEX20.md │ │ ├── DEX21.md │ │ ├── DEX22.md │ │ ├── DEX23.md │ │ ├── DEX24.md │ │ ├── DEX25.md │ │ ├── DEX26.md │ │ ├── DEX27.md │ │ ├── DEX28.md │ │ ├── DEX29.md │ │ ├── DEX30.md │ │ ├── DEX31.md │ │ ├── DEX32.md │ │ ├── DEX33.md │ │ ├── DEX34.md │ │ ├── DEX35.md │ │ ├── DEX36.md │ │ ├── DEX37.md │ │ ├── DEX38.md │ │ ├── DEX39.md │ │ ├── DEX40.md │ │ ├── DEX41.md │ │ ├── DEX42.md │ │ └── DEX43.md │ ├── general │ │ ├── G01.md │ │ ├── G02.md │ │ ├── G04.md │ │ ├── G05.md │ │ ├── G06.md │ │ ├── G07.md │ │ ├── G08.md │ │ ├── G09.md │ │ ├── G10.md │ │ ├── G11.md │ │ ├── G12.md │ │ ├── G13.md │ │ ├── G14.md │ │ ├── G15.md │ │ ├── G16.md │ │ └── G17.md │ ├── obervation_period │ │ ├── OP01.md │ │ ├── OP02.md │ │ ├── OP03.md │ │ ├── OP04.md │ │ ├── OP05.md │ │ ├── OP06.md │ │ ├── OP07.md │ │ ├── OP08.md │ │ ├── OP09.md │ │ ├── OP10.md │ │ ├── OP11.md │ │ ├── OP12.md │ │ ├── OP13.md │ │ ├── OP14.md │ │ ├── OP15.md │ │ ├── OP16.md │ │ ├── OP17.md │ │ ├── OP18.md │ │ ├── OP19.md │ │ └── OP20.md │ ├── observation │ │ └── O01.md │ ├── payer_plan │ │ ├── PP01.md │ │ └── PP02.md │ ├── person │ │ ├── PE02.md │ │ ├── PE03.md │ │ ├── PE06.md │ │ ├── PE07.md │ │ ├── PE08.md │ │ ├── PE09.md │ │ ├── PE10.md │ │ ├── PE11.md │ │ └── PE12.md │ └── procedure │ │ └── PO2.md │ ├── server.R │ ├── timer.js │ ├── ui.R │ ├── widgets.R │ └── www │ ├── .gitignore │ ├── ehden_logo.png │ ├── favicon.ico │ ├── logo.png │ ├── ohdsi_color.png │ └── rendered.css ├── man └── launchQueryLibrary.Rd └── vignettes ├── UsingQueryLibrary.Rmd ├── config.png ├── execute.png └── home.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(launchQueryLibrary) 4 | -------------------------------------------------------------------------------- /QueryLibrary.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/QueryLibrary.Rproj -------------------------------------------------------------------------------- /R/ShinyApp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/R/ShinyApp.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/README.md -------------------------------------------------------------------------------- /compare_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/compare_versions -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/deploy.sh -------------------------------------------------------------------------------- /extras/PackageMaintenance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/extras/PackageMaintenance.R -------------------------------------------------------------------------------- /extras/QueryLibrary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/extras/QueryLibrary.pdf -------------------------------------------------------------------------------- /extras/Test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/extras/Test.R -------------------------------------------------------------------------------- /inst/doc/UsingQueryLibrary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/doc/UsingQueryLibrary.pdf -------------------------------------------------------------------------------- /inst/doc/UsingQueryLibrary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/doc/UsingQueryLibrary.tex -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/.gitignore: -------------------------------------------------------------------------------- 1 | rsconnect 2 | testdatabases 3 | *.csv 4 | errorReport.txt 5 | -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/about.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/global.R -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/helpers.R -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/markdownParse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/markdownParse.R -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/care_site/CS01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/care_site/CS01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/care_site/CS02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/care_site/CS02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C04.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition/C11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition/C11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE04.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE12.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE13.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE16.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_era/CE17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_era/CE17.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO04.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO12.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO13.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO14.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO15.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO16.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO17.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO18.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO19.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO20.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO21.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO22.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO23.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO24.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurence/CO25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurence/CO25.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/condition_occurrence_combinations/COC11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D04.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D14.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D15.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D16.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D17.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D18.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D19.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D20.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D22.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D24.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D25.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D26.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug/D27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug/D27.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_cost/DRC01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_cost/DRC01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_cost/DRC03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_cost/DRC03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_cost/DRC07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_cost/DRC07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER04.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER12.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER13.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER14.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER15.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER16.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER17.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER18.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER21.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER23.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_era/DER26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_era/DER26.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX04.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX12.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX13.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX14.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX15.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX16.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX17.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX18.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX19.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX20.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX21.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX22.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX23.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX24.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX25.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX26.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX27.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX28.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX29.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX30.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX31.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX32.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX33.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX34.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX35.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX36.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX37.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX38.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX38.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX39.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX39.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX40.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX41.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX42.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX43.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/drug_exposure/DEX43.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G04.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G12.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G13.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G14.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G15.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G16.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/general/G17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/general/G17.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP04.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP05.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP12.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP13.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP14.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP15.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP16.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP17.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP18.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP19.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/obervation_period/OP20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/obervation_period/OP20.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/observation/O01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/observation/O01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/payer_plan/PP01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/payer_plan/PP01.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/payer_plan/PP02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/payer_plan/PP02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE02.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE03.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE06.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE07.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE08.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE09.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE10.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE11.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/person/PE12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/person/PE12.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/queries/procedure/PO2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/queries/procedure/PO2.md -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/server.R -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/timer.js -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/ui.R -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/widgets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/widgets.R -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/www/.gitignore -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/www/ehden_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/www/ehden_logo.png -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/www/favicon.ico -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/www/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/www/logo.png -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/www/ohdsi_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/www/ohdsi_color.png -------------------------------------------------------------------------------- /inst/shinyApps/QueryLibrary/www/rendered.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/inst/shinyApps/QueryLibrary/www/rendered.css -------------------------------------------------------------------------------- /man/launchQueryLibrary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/man/launchQueryLibrary.Rd -------------------------------------------------------------------------------- /vignettes/UsingQueryLibrary.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/vignettes/UsingQueryLibrary.Rmd -------------------------------------------------------------------------------- /vignettes/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/vignettes/config.png -------------------------------------------------------------------------------- /vignettes/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/vignettes/execute.png -------------------------------------------------------------------------------- /vignettes/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHDSI/QueryLibrary/HEAD/vignettes/home.png --------------------------------------------------------------------------------