Clinical-Genomics / loqusdbapi

A simple REST api for loqusdb
2 stars 0 forks source link

How do I send queries to the svs endpoint? #6

Closed northwestwitch closed 3 years ago

northwestwitch commented 3 years ago

Trying with a string like this: curl -X GET "http://127.0.0.1:9000/svs?chrom=1&end_chrom=1&pos=7889972&end=7890026&sv_type=DEL"

The app doesn't like it and I get 307 (redirect) response

northwestwitch commented 3 years ago

Dang I was missing a slash. The correct string is this: curl -X GET "http://127.0.0.1:9000/svs/?chrom=1&end_chrom=1&pos=7889972&end=7890026&sv_type=DEL"

image