-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to convert the raw data to ISMRMRD format due to "invalid_argument" #119
Comments
I'm gonna guess this is the same issue as this: #113 (comment) |
use dockerfile: # Primera fase: ismrmrd_base ARG DEBIAN_FRONTEND=noninteractive Instalar las dependencias necesarias, incluidas las bibliotecas de desarrollo y herramientas de compilaciónRUN apt-get update && apt-get install -y git cmake g++ libhdf5-dev libxml2-dev libxslt1-dev libboost-all-dev xsdcxx libxerces-c-dev libtinyxml-dev libpugixml-dev libhdf5-serial-dev h5utils hdf5-tools RUN mkdir -p /opt/code Crear directorio para siemens_to_ismrmrd y copiar el contenidoRUN mkdir -p /opt/code/siemens_to_ismrmrd Clonar y compilar la biblioteca ISMRMRDRUN cd /opt/code && Compilar el convertidor siemens_to_ismrmrdRUN cd /opt/code/siemens_to_ismrmrd && Crear un archivo comprimido con las bibliotecas de ISMRMRD para la siguiente faseRUN cd /usr/local/lib && tar -czvf libismrmrd.tar.gz libismrmrd* Segunda fase: imagen ligera con las dependencias mínimasFROM ubuntu:22.04 Instalar las dependencias mínimas necesarias para ejecutar el convertidor y las bibliotecas ISMRMRDRUN apt-get update && apt-get install -y --no-install-recommends libxslt1.1 libhdf5-dev libxerces-c-dev libboost-all-dev libpugixml1v5 && apt-get clean && rm -rf /var/lib/apt/lists/* Copiar el binario de siemens_to_ismrmrd y las bibliotecas de la fase anteriorCOPY --from=ismrmrd_base /usr/local/bin/siemens_to_ismrmrd /usr/local/bin/siemens_to_ismrmrd Descomprimir las bibliotecas de ISMRMRD y ejecutar ldconfig para actualizar las referencias de las bibliotecasRUN cd /usr/local/lib && tar -zxvf libismrmrd.tar.gz && rm libismrmrd.tar.gz && ldconfig |
The problem it nos resolved :(, use the Siemens NX map , and not work |
Hello,
I tried to convert the raw data to ISMRMRD format, but I got this error which I did not have before.
Recently, I reinstalled the tool, and the tool does not work with data that could be converted with the previous tool.
My current tool version is
The error I got is shown as below.
For the simple run, I did not provide -o option, but the result with the option "-o" is the same as it shows.
For this, I did not explicitly provide xml and xsl files, so it uses the defualt xml and xsl.
Thank you in advance!
The text was updated successfully, but these errors were encountered: