コード例 #1
0
ファイル: loinc.py プロジェクト: bombica/indivo_codingsystems
def create_and_load_from(filepath):
    if not os.path.isfile(filepath):
        print "Can't load LOINC, the file does not exist at %s" % filepath
        return
    
    codingsystem = create_codingsystem('loinc', 'LOINC')
    load(open(filepath, "r"), codingsystem)
コード例 #2
0
ファイル: loinc.py プロジェクト: liyocee/indivo_codingsystems
def create_and_load_from(filepath):
    if not os.path.isfile(filepath):
        print "Can't load LOINC, the file does not exist at %s" % filepath
        return

    codingsystem = create_codingsystem('loinc', 'LOINC')
    load(open(filepath, "r"), codingsystem)
コード例 #3
0
def create_and_load_from(filepath):
    if not os.path.isfile(filepath):
        print "Can't load HL7 v3.0 Vaccines, the file does not exist at %s" % filepath
        return
    
    codingsystem = create_codingsystem('hl7-v3-vaccines', 'HL7 v3.0 Vaccines')
    load(open(filepath, "r"), codingsystem)
コード例 #4
0
def create_and_load_from(filepath):
    if not os.path.isfile(filepath):
        print "Can't load SNOMED, the file does not exist at %s" % filepath
        return
    
    codingsystem = create_codingsystem('procedures', 'SNOMED concept codes with UMLS')
    load(open(filepath, "r"), codingsystem)
コード例 #5
0
def create_and_load_from(filepath):
    if not os.path.isfile(filepath):
        print "Can't load SNOMED, the file does not exist at %s" % filepath
        return

    codingsystem = create_codingsystem("snomed", "SNOMED concept codes with UMLS")
    load(open(filepath, "r"), codingsystem)
コード例 #6
0
def create_and_load_from(filepath):
    if not os.path.isfile(filepath):
        print "Can't load RxTerms, the file does not exist at %s" % filepath
        return
    
    codingsystem = create_codingsystem('rxterms', 'RxTerms',
                                       key_field_name_1 = 'brand_name',
                                       key_field_name_2 = 'rxn_dose_form',
                                       key_field_name_3 = 'strength')
    load(open(filepath, "r"), codingsystem)
コード例 #7
0
ファイル: allergies.py プロジェクト: Chatzimina/indivo_server
def create_and_load_from(filepath):
    if not os.path.isfile(filepath):
        print "Can't load RxTerms, the file does not exist at %s" % filepath
        return

    codingsystem = create_codingsystem('allergies',
                                       'allergies',
                                       key_field_name_1='brand_name',
                                       key_field_name_2='rxn_dose_form',
                                       key_field_name_3='strength')
    load(open(filepath, "r"), codingsystem)
コード例 #8
0
ファイル: loinc.py プロジェクト: elliotcohen/indivo_server
def create_and_load_from(filepath):
    codingsystem = create_codingsystem('loinc', 'LOINC')
    load(open(filepath, "r"), codingsystem)
コード例 #9
0
def create_and_load_from(filepath):        
    codingsystem = create_codingsystem('hl7-v3-vaccines', 'HL7 v3.0 Vaccines')
    load(open(filepath, "r"), codingsystem)
コード例 #10
0
ファイル: loinc.py プロジェクト: cviedmai/indivo_server
def create_and_load_from(filepath):        
    codingsystem = create_codingsystem('loinc', 'LOINC')
    load(open(filepath, "r"), codingsystem)
コード例 #11
0
ファイル: snomed.py プロジェクト: elliotcohen/indivo_server
def create_and_load_from(filepath):
    codingsystem = create_codingsystem('snomed',
                                       'SNOMED concept codes with UMLS')
    load(open(filepath, "r"), codingsystem)
コード例 #12
0
ファイル: snomed.py プロジェクト: cviedmai/indivo_server
def create_and_load_from(filepath):        
    codingsystem = create_codingsystem('snomed', 'SNOMED concept codes with UMLS')
    load(open(filepath, "r"), codingsystem)
コード例 #13
0
ファイル: rxterms.py プロジェクト: elliotcohen/indivo_server
def create_and_load_from(filepath):        
    codingsystem = create_codingsystem('rxterms', 'RxTerms',
                                       key_field_name_1 = 'brand_name',
                                       key_field_name_2 = 'rxn_dose_form',
                                       key_field_name_3 = 'strength')
    load(open(filepath, "r"), codingsystem)