New post

Encontrar

Job
· Sep 24, 2024

Seeking work FT/Contract HealthConnect experience

I am seeking work with InterSystems HealthConnect.  My experience is working with Rules and DTLs, plus message search, and export of components.

I have actively developed and supported HL7 V2.x interfaces.

I reside in Massachusetts.  Open to full-time or contract roles, either local or remote.

1 Comment
Discussion (1)2
Log in or sign up to continue
Question
· Sep 24, 2024

Tilde(~) is not working while replacing

Tilde(~) is not working while replacing or writing it in hardcoded. Rest every other character is working fine. Has anyone had the same issue earlier? It is not coming in HL7 generating through this code.

 

<assign property='target.{FT1grp(i).FT1:DiagnosisCodeFT1(1).Identifier}' value='..replace(source.superBillDetailBeanDao.GetAt(i).iCDCodes,",","~")' action='set'/>


<assign property='target.{FT1grp(i).FT1:ProcedureCode.Identifier}' value='..replace(source.superBillDetailBeanDao.GetAt(i).cPTCode,",","~")' action='set'/>

1 Comment
Discussion (1)1
Log in or sign up to continue
Article
· Sep 24, 2024 7m read

Access IRIS database with ODBC or JDBC using Python

Problems with Strings

I am accessing IRIS databases with JDBC (or ODBC) using Python. I want to fetch the data into a pandas dataframe to manipulate the data and create charts from it. I ran into a problem with string handling while using JDBC. This post is to help if anyone else has the same issues. Or, if there is an easier way to solve this, let me know in the comments!

I am using OSX, so I am unsure how unique my problem is. I am using Jupyter Notebooks, although the code would generally be the same if you used any other Python program or framework.

Discussion (0)1
Log in or sign up to continue
Article
· Sep 24, 2024 1m read

SMART on FHIR app - Muestra con instrucciones de ejercicios prácticos/talleres

Basado en una gran muestra y el taller construido por @Luis Angel Pérez Ramos (ver artículos relacionados y relacionados con Open Exchange app), que incluía un contenedor local de InterSystems IRIS for Health (y la configuración deseada), esta muestra presentada aquí, adaptó el taller para usar el Servidor FHIR en la Nube de InterSystems, y su configuración relacionada.
 

El Open Exchange relacionado y el repositorio de GitHub incluyen instrucciones detalladas (y capturas de pantalla relacionadas) para crear el proyecto y el flujo deseados.

También se incluye una serie de vídeos breves para acompañar los pasos a realizar.

Básicamente los pasos incluyen:

  • Configuración de un Servidor Cloud FHIR Configuración de un servidor OAuth (auth0 by Okta)
    • Creación de una aplicación
    • Creación de una API
    • Creación de un usuario
  • Configuración del Servidor FHIR
    • Creación de un servidor OAuth
    • Creación de una aplicación
  • Adaptación de la aplicación (Angular) para apuntar a los servidores FHIR y OAuth
    • Adaptación de proxy.config.json
    • Adaptación de nginx.conf
    • Adaptación de app.module.ts

¡Disfrutadlo!

Discussion (0)1
Log in or sign up to continue
Article
· Sep 23, 2024 5m read

IRIS的列存储介绍

InterSystems IRIS 数据平台作为关系数据库使用时,传统上以行为单位存储数据。现在,由于底层数据结构的灵活性,您也可以按列存储数据。虽然每种选择都有其优点,但在列中存储数据(称为列式存储)可以在数据分析的业务中显著提高各种用例的性能。列存储自2022.2 版的IRIS起做实验功能引入, 2023.1 起正式支持,到目前已经迭代了几个版本。

假设一家公司使用基于行的存储来保存收到的所有订单数据,跟踪订单 ID、订单日期、客户、优先级、状态和总金额等数据,使用行存储可以被示意为下面的图形:

row_storage

每一行数据在逻辑上对应一个订单,单行中的所有数据在物理上存储在一起。

这种模式便于快速添加或更新订单。订单可以一次添加一个,数据库的每次写入正好对应一行。当发生了订单的事务,除了要更改的行之外,无需访问或更新表中的任何数据。

Discussion (0)1
Log in or sign up to continue