├── .gitignore ├── .jsbeautifyrc ├── .jshintrc ├── .travis.yml ├── Jenkinsfile ├── LICENSE ├── README.md ├── RELEASENOTES.md ├── example.js ├── gruntfile.js ├── index.js ├── lib ├── parser.js ├── segments.txt ├── segments │ ├── ACC.txt │ ├── ADD.txt │ ├── AIG.txt │ ├── AIL.txt │ ├── AIP.txt │ ├── AIS.txt │ ├── AL1.txt │ ├── APR.txt │ ├── ARQ.txt │ ├── AUT.txt │ ├── BLG.txt │ ├── CDM.txt │ ├── CM0.txt │ ├── CM1.txt │ ├── CM2.txt │ ├── CSP.txt │ ├── CSR.txt │ ├── CSS.txt │ ├── CTD.txt │ ├── CTI.txt │ ├── DB1.txt │ ├── DG1.txt │ ├── DRG.txt │ ├── DSC.txt │ ├── DSP.txt │ ├── EQL.txt │ ├── ERQ.txt │ ├── ERR.txt │ ├── EVN.txt │ ├── FAC.txt │ ├── FT1.txt │ ├── GOL.txt │ ├── GT1.txt │ ├── IAM.txt │ ├── IN1.txt │ ├── IN2.txt │ ├── IN3.txt │ ├── LCC.txt │ ├── LCH.txt │ ├── LDP.txt │ ├── LOC.txt │ ├── LRL.txt │ ├── MFA.txt │ ├── MFE.txt │ ├── MFI.txt │ ├── MRG.txt │ ├── MSA.txt │ ├── MSH.txt │ ├── NCK.txt │ ├── NK1.txt │ ├── NPU.txt │ ├── NSC.txt │ ├── NST.txt │ ├── NTE.txt │ ├── OBR.txt │ ├── OBX.txt │ ├── ODS.txt │ ├── ODT.txt │ ├── OM1.txt │ ├── OM2.txt │ ├── OM3.txt │ ├── OM4.txt │ ├── OM5.txt │ ├── OM6.txt │ ├── ORC.txt │ ├── PCR.txt │ ├── PD1.txt │ ├── PDC.txt │ ├── PEO.txt │ ├── PES.txt │ ├── PID.txt │ ├── PR1.txt │ ├── PRA.txt │ ├── PRB.txt │ ├── PRC.txt │ ├── PRD.txt │ ├── PSH.txt │ ├── PTH.txt │ ├── PV1.txt │ ├── PV2.txt │ ├── QAK.txt │ ├── QRD.txt │ ├── QRF.txt │ ├── RDF.txt │ ├── RDT.txt │ ├── RF1.txt │ ├── RGS.txt │ ├── ROL.txt │ ├── RQ1.txt │ ├── RQD.txt │ ├── RXA.txt │ ├── RXC.txt │ ├── RXD.txt │ ├── RXE.txt │ ├── RXG.txt │ ├── RXO.txt │ ├── RXR.txt │ ├── SCH.txt │ ├── SPR.txt │ ├── STF.txt │ ├── TXA.txt │ ├── UB1.txt │ ├── UB2.txt │ ├── URD.txt │ ├── URS.txt │ ├── VAR.txt │ └── VTQ.txt ├── serializer.js └── translate.js ├── package.json ├── scrub.js └── test ├── fixtures ├── isabella_jones_lipid_panel.txt ├── isabella_jones_multiple_tests.txt ├── sample.txt ├── sample2.txt ├── sample3.txt ├── sample4.txt ├── sample5.txt ├── sample6.txt └── samples.txt └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/.travis.yml -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/example.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/gruntfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/index.js -------------------------------------------------------------------------------- /lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/parser.js -------------------------------------------------------------------------------- /lib/segments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments.txt -------------------------------------------------------------------------------- /lib/segments/ACC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/ACC.txt -------------------------------------------------------------------------------- /lib/segments/ADD.txt: -------------------------------------------------------------------------------- 1 | ADD 2 | SEQ LENGTH DT OPT RP/# ELEMENT NAME 3 | 1 65536 ST O 1 Addendum Continuation Pointer 4 | -------------------------------------------------------------------------------- /lib/segments/AIG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/AIG.txt -------------------------------------------------------------------------------- /lib/segments/AIL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/AIL.txt -------------------------------------------------------------------------------- /lib/segments/AIP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/AIP.txt -------------------------------------------------------------------------------- /lib/segments/AIS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/AIS.txt -------------------------------------------------------------------------------- /lib/segments/AL1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/AL1.txt -------------------------------------------------------------------------------- /lib/segments/APR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/APR.txt -------------------------------------------------------------------------------- /lib/segments/ARQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/ARQ.txt -------------------------------------------------------------------------------- /lib/segments/AUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/AUT.txt -------------------------------------------------------------------------------- /lib/segments/BLG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/BLG.txt -------------------------------------------------------------------------------- /lib/segments/CDM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CDM.txt -------------------------------------------------------------------------------- /lib/segments/CM0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CM0.txt -------------------------------------------------------------------------------- /lib/segments/CM1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CM1.txt -------------------------------------------------------------------------------- /lib/segments/CM2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CM2.txt -------------------------------------------------------------------------------- /lib/segments/CSP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CSP.txt -------------------------------------------------------------------------------- /lib/segments/CSR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CSR.txt -------------------------------------------------------------------------------- /lib/segments/CSS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CSS.txt -------------------------------------------------------------------------------- /lib/segments/CTD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CTD.txt -------------------------------------------------------------------------------- /lib/segments/CTI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/CTI.txt -------------------------------------------------------------------------------- /lib/segments/DB1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/DB1.txt -------------------------------------------------------------------------------- /lib/segments/DG1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/DG1.txt -------------------------------------------------------------------------------- /lib/segments/DRG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/DRG.txt -------------------------------------------------------------------------------- /lib/segments/DSC.txt: -------------------------------------------------------------------------------- 1 | DSC 2 | SEQ LENGTH DT OPT RP/# ELEMENT NAME 3 | 1 180 ST O 1 Continuation Pointer 4 | -------------------------------------------------------------------------------- /lib/segments/DSP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/DSP.txt -------------------------------------------------------------------------------- /lib/segments/EQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/EQL.txt -------------------------------------------------------------------------------- /lib/segments/ERQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/ERQ.txt -------------------------------------------------------------------------------- /lib/segments/ERR.txt: -------------------------------------------------------------------------------- 1 | ERR 2 | SEQ LENGTH DT OPT RP/# ELEMENT NAME 3 | 1 80 ELD R * Error Code and Location 4 | -------------------------------------------------------------------------------- /lib/segments/EVN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/EVN.txt -------------------------------------------------------------------------------- /lib/segments/FAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/FAC.txt -------------------------------------------------------------------------------- /lib/segments/FT1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/FT1.txt -------------------------------------------------------------------------------- /lib/segments/GOL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/GOL.txt -------------------------------------------------------------------------------- /lib/segments/GT1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/GT1.txt -------------------------------------------------------------------------------- /lib/segments/IAM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/IAM.txt -------------------------------------------------------------------------------- /lib/segments/IN1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/IN1.txt -------------------------------------------------------------------------------- /lib/segments/IN2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/IN2.txt -------------------------------------------------------------------------------- /lib/segments/IN3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/IN3.txt -------------------------------------------------------------------------------- /lib/segments/LCC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/LCC.txt -------------------------------------------------------------------------------- /lib/segments/LCH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/LCH.txt -------------------------------------------------------------------------------- /lib/segments/LDP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/LDP.txt -------------------------------------------------------------------------------- /lib/segments/LOC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/LOC.txt -------------------------------------------------------------------------------- /lib/segments/LRL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/LRL.txt -------------------------------------------------------------------------------- /lib/segments/MFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/MFA.txt -------------------------------------------------------------------------------- /lib/segments/MFE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/MFE.txt -------------------------------------------------------------------------------- /lib/segments/MFI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/MFI.txt -------------------------------------------------------------------------------- /lib/segments/MRG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/MRG.txt -------------------------------------------------------------------------------- /lib/segments/MSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/MSA.txt -------------------------------------------------------------------------------- /lib/segments/MSH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/MSH.txt -------------------------------------------------------------------------------- /lib/segments/NCK.txt: -------------------------------------------------------------------------------- 1 | NCK 2 | SEQ LENGTH DT OPT RP/# ELEMENT NAME 3 | 1 0 TS O 1 System Date/Time 4 | -------------------------------------------------------------------------------- /lib/segments/NK1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/NK1.txt -------------------------------------------------------------------------------- /lib/segments/NPU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/NPU.txt -------------------------------------------------------------------------------- /lib/segments/NSC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/NSC.txt -------------------------------------------------------------------------------- /lib/segments/NST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/NST.txt -------------------------------------------------------------------------------- /lib/segments/NTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/NTE.txt -------------------------------------------------------------------------------- /lib/segments/OBR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/OBR.txt -------------------------------------------------------------------------------- /lib/segments/OBX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/OBX.txt -------------------------------------------------------------------------------- /lib/segments/ODS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/ODS.txt -------------------------------------------------------------------------------- /lib/segments/ODT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/ODT.txt -------------------------------------------------------------------------------- /lib/segments/OM1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/OM1.txt -------------------------------------------------------------------------------- /lib/segments/OM2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/OM2.txt -------------------------------------------------------------------------------- /lib/segments/OM3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/OM3.txt -------------------------------------------------------------------------------- /lib/segments/OM4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/OM4.txt -------------------------------------------------------------------------------- /lib/segments/OM5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/OM5.txt -------------------------------------------------------------------------------- /lib/segments/OM6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/OM6.txt -------------------------------------------------------------------------------- /lib/segments/ORC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/ORC.txt -------------------------------------------------------------------------------- /lib/segments/PCR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PCR.txt -------------------------------------------------------------------------------- /lib/segments/PD1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PD1.txt -------------------------------------------------------------------------------- /lib/segments/PDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PDC.txt -------------------------------------------------------------------------------- /lib/segments/PEO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PEO.txt -------------------------------------------------------------------------------- /lib/segments/PES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PES.txt -------------------------------------------------------------------------------- /lib/segments/PID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PID.txt -------------------------------------------------------------------------------- /lib/segments/PR1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PR1.txt -------------------------------------------------------------------------------- /lib/segments/PRA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PRA.txt -------------------------------------------------------------------------------- /lib/segments/PRB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PRB.txt -------------------------------------------------------------------------------- /lib/segments/PRC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PRC.txt -------------------------------------------------------------------------------- /lib/segments/PRD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PRD.txt -------------------------------------------------------------------------------- /lib/segments/PSH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PSH.txt -------------------------------------------------------------------------------- /lib/segments/PTH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PTH.txt -------------------------------------------------------------------------------- /lib/segments/PV1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PV1.txt -------------------------------------------------------------------------------- /lib/segments/PV2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/PV2.txt -------------------------------------------------------------------------------- /lib/segments/QAK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/QAK.txt -------------------------------------------------------------------------------- /lib/segments/QRD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/QRD.txt -------------------------------------------------------------------------------- /lib/segments/QRF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/QRF.txt -------------------------------------------------------------------------------- /lib/segments/RDF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RDF.txt -------------------------------------------------------------------------------- /lib/segments/RDT.txt: -------------------------------------------------------------------------------- 1 | RDT 2 | SEQ LENGTH DT OPT RP/# ELEMENT NAME 3 | 1 0 VARIES R 1 Column Value 4 | -------------------------------------------------------------------------------- /lib/segments/RF1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RF1.txt -------------------------------------------------------------------------------- /lib/segments/RGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RGS.txt -------------------------------------------------------------------------------- /lib/segments/ROL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/ROL.txt -------------------------------------------------------------------------------- /lib/segments/RQ1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RQ1.txt -------------------------------------------------------------------------------- /lib/segments/RQD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RQD.txt -------------------------------------------------------------------------------- /lib/segments/RXA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RXA.txt -------------------------------------------------------------------------------- /lib/segments/RXC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RXC.txt -------------------------------------------------------------------------------- /lib/segments/RXD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RXD.txt -------------------------------------------------------------------------------- /lib/segments/RXE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RXE.txt -------------------------------------------------------------------------------- /lib/segments/RXG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RXG.txt -------------------------------------------------------------------------------- /lib/segments/RXO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RXO.txt -------------------------------------------------------------------------------- /lib/segments/RXR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/RXR.txt -------------------------------------------------------------------------------- /lib/segments/SCH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/SCH.txt -------------------------------------------------------------------------------- /lib/segments/SPR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/SPR.txt -------------------------------------------------------------------------------- /lib/segments/STF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/STF.txt -------------------------------------------------------------------------------- /lib/segments/TXA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/TXA.txt -------------------------------------------------------------------------------- /lib/segments/UB1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/UB1.txt -------------------------------------------------------------------------------- /lib/segments/UB2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/UB2.txt -------------------------------------------------------------------------------- /lib/segments/URD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/URD.txt -------------------------------------------------------------------------------- /lib/segments/URS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/URS.txt -------------------------------------------------------------------------------- /lib/segments/VAR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/VAR.txt -------------------------------------------------------------------------------- /lib/segments/VTQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/segments/VTQ.txt -------------------------------------------------------------------------------- /lib/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/serializer.js -------------------------------------------------------------------------------- /lib/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/lib/translate.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/package.json -------------------------------------------------------------------------------- /scrub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/scrub.js -------------------------------------------------------------------------------- /test/fixtures/isabella_jones_lipid_panel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/isabella_jones_lipid_panel.txt -------------------------------------------------------------------------------- /test/fixtures/isabella_jones_multiple_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/isabella_jones_multiple_tests.txt -------------------------------------------------------------------------------- /test/fixtures/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/sample.txt -------------------------------------------------------------------------------- /test/fixtures/sample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/sample2.txt -------------------------------------------------------------------------------- /test/fixtures/sample3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/sample3.txt -------------------------------------------------------------------------------- /test/fixtures/sample4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/sample4.txt -------------------------------------------------------------------------------- /test/fixtures/sample5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/sample5.txt -------------------------------------------------------------------------------- /test/fixtures/sample6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/sample6.txt -------------------------------------------------------------------------------- /test/fixtures/samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/fixtures/samples.txt -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amida-tech/hl7/HEAD/test/test.js --------------------------------------------------------------------------------