Difference between revisions of "Johnllopez Week 9"
(Added the API Exploration section) |
(Explained how I got the symbol portion) |
||
Line 30: | Line 30: | ||
==API Exploration== | ==API Exploration== | ||
In order to complete this portion of the assignment, I met with my partner, [[User:Hhinsch| Hayden Hinsch]], as well as [[User:Dbashour | Dina Bashoura]] and [[User:Simonwro120 | Simon Wroblewski]] in the lab. I developed my answer by first inspecting the URL given for the original JSON: | In order to complete this portion of the assignment, I met with my partner, [[User:Hhinsch| Hayden Hinsch]], as well as [[User:Dbashour | Dina Bashoura]] and [[User:Simonwro120 | Simon Wroblewski]] in the lab. I developed my answer by first inspecting the URL given for the original JSON: | ||
+ | |||
+ | curl https://yeastmine.yeastgenome.org/yeastmine/service/data/Gene?id=1012319 | ||
+ | |||
+ | I then inspected the JSON, and I saw that there were several parameters within the JSON, including an ID parameter as well as a symbol parameter. Thus, I changed my URL to search using the symbol parameter instead of the ID, and I got the following results when I tested for BRO1: | ||
+ | |||
+ | curl https://yeastmine.yeastgenome.org/yeastmine/service/data/Gene?symbol=BRO1 | ||
+ | |||
+ | The output came to be two "results" objects, one of which was exactly the same as the one I retrieved from inputting the Gene ID. I knew I was close but I needed a way to filter my results. | ||
Revision as of 05:35, 31 October 2017
GRNSight Testing
Below is a list of the test results for the Normalization and Zoom functions.
We used the following files for the tests:
21-genes_31-edges_Schade-data_estimation_output.sif 21-genes_31-edges_Schade-data_estimation_output.xlsx 21-genes_31-edges_Schade-data_estimation_output.graphml
- This test passes successfully.
- This test passes successfully.
- This test passes successfully.
- Both tests pass successfully.
- Both tests pass successfully.
- Both tests pass successfully.
- Both tests pass successfully.
- Both tests pass successfully.
- Both tests pass successfully.
- All 3 tests pass successfully.
- All 3 tests pass successfully.
- All 3 tests pass successfully.
- Both tests pass successfully.
- Both tests pass successfully.
- Both tests pass successfully.
- All 3 tests pass successfully.
- All 3 tests pass successfully.
- All 3 tests pass successfully.
API Exploration
In order to complete this portion of the assignment, I met with my partner, Hayden Hinsch, as well as Dina Bashoura and Simon Wroblewski in the lab. I developed my answer by first inspecting the URL given for the original JSON:
curl https://yeastmine.yeastgenome.org/yeastmine/service/data/Gene?id=1012319
I then inspected the JSON, and I saw that there were several parameters within the JSON, including an ID parameter as well as a symbol parameter. Thus, I changed my URL to search using the symbol parameter instead of the ID, and I got the following results when I tested for BRO1:
curl https://yeastmine.yeastgenome.org/yeastmine/service/data/Gene?symbol=BRO1
The output came to be two "results" objects, one of which was exactly the same as the one I retrieved from inputting the Gene ID. I knew I was close but I needed a way to filter my results.
Acknowledgements and References
https://xmlpipedb.cs.lmu.edu/biodb/fall2017/index.php/Week_7