0%

Exercise 6: applying multiple filters

Let’s combine the two filters from Exercise 4 and Exercise 5: marker_symbol and a stricter p-value threshold, setting it to be less than 1e-4.

Go to exercise 6 in the Google Colab. Once you’ve finished Exercise 6 in the Google Colab, return here to continue the tutorial.

Show the correct answer
num_found, df = solr_request(
    core='genotype-phenotype',
    params={
        'q': 'marker_symbol:Dclk1 AND p_value:[* TO 1e-4]',
        'rows': 3,
        'fl': 'marker_symbol,marker_accession_id,parameter_name,parameter_stable_id,p_value,zygosity'
    }
)