Update README.md

Improve redaction
This commit is contained in:
ING-HGA 2024-10-03 10:31:58 -06:00 committed by GitHub
parent b8faab7a89
commit d7371ee34a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,26 +1,24 @@
# Julia_msi_GUI<br /> # Julia_msi_GUI<br />
A Graphical User Interface created with <i>Julia Genie Builder</i> made for to assist in the use of this repository: https://github.com/CINVESTAV-LABI/julia_mzML_imzML which generates images with the mzMl, imzML and ibd files.<br /> A Graphical User Interface for IMS in Julia: https://github.com/CINVESTAV-LABI/julia_mzML_imzML
For the correct implementation and use of this repository one must insert the next lines just as they are depicted in your <b>Julia</b> terminal to install the dependencies needed, this part is only needed once. <br />
## Local installation
* Launch Julia
``` ```
julia julia
``` ```
press closing square bracket: * Enter Pkg mode by pressing the close square bracket once Julia has been loaded: ** Mostrar imagen del modo pkg**
``` ```
] ]
``` ```
To enter Pkg mode, and then add the next libraries: * Install the following libraries
``` ```
add Pkg Libz ; add https://github.com/CINVESTAV-LABI/julia_mzML_imzML ; add PlotlyBase ; add Statistics ; add CairoMakie ; add Colors ; add Genie add Pkg Libz ; add https://github.com/CINVESTAV-LABI/julia_mzML_imzML ; add PlotlyBase ; add Statistics ; add CairoMakie ; add Colors ; add Genie
``` ```
Then open a <b>Julia</b> terminal on the directory <i>"Julia_msi_GUI"</i> and put the next code, this is needed every time you want to run the GUI: <br /> *In the Pkg mode (enter by pressing "]" once Julia is rining) enter:
```
]
```
To enter Pkg mode again, then paste the next lines:
``` ```
activate . activate .
``` ```
Press backspace key to exit Pkg mode and continue with: * Get out from Pkg mode by pressing the backspace key and enter next line:
``` ```
using Genie ; Genie.loadapp() ; up() using Genie ; Genie.loadapp() ; up()
``` ```