JMP 16.1 > WIN > JSL > Parse Complex JSON
Hi JMP Community,
I need to retrieve biological information from the Human Protein Atlas public website based on a unique identifier.
So far, I can easily retrieve and parse the JSON file from the website using the simple code below.
Names DEfault to Here (1);
ID = "ENSG00000108691";
HTM_c = "https://www.proteinatlas.org/XXX.json";
HTM_str = Substitute (HTM_c, "XXX", ID);
request = New HTTP R
...