bigbio / spectra-ws

0 stars 0 forks source link

Search spectra by other properties #1

Closed ypriverol closed 3 years ago

ypriverol commented 3 years ago

We should be able to find spectra by the following properties:

Would be really good to be able to do see and stream also by those properties.

chakrabandla commented 3 years ago
curl -X POST "https://www.ebi.ac.uk/pride/multiomics/ws/spectra/sse/findByGeneAccessions" -H "accept: */*" -H "Content-Type: application/json" -d '["ENSG00000183785.15","TUBA4A","TUBA8"]' > aaaa.txt  &

curl -X POST "https://www.ebi.ac.uk/pride/multiomics/ws/spectra/sse/findByProteinAccessions" -H "accept: */*" -H "Content-Type: application/json" -d '["ENSP00000382982.3","P68363","P68366"]' > bbbb.txt &

curl -X POST "https://www.ebi.ac.uk/pride/multiomics/ws/spectra/stream/findByGeneAccessions" -H "accept: */*" -H "Content-Type: application/json" -d '["ENSG00000183785.15","TUBA4A","TUBA8"]' > ccc.txt &

curl -X POST "https://www.ebi.ac.uk/pride/multiomics/ws/spectra/stream/findByProteinAccessions" -H "accept: */*" -H "Content-Type: application/json" -d '["ENSP00000382982.3","P68363","P68366"]' > ddd.txt &
ypriverol commented 3 years ago

Done