We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See e.g. here https://vast-survey.org/vast-tools/notebook-examples/vast-pipeline-example/
where the query string is rendering as
my_query_string = ( "n_measurements >= 3 " "& n_selavy >= 2 " "& n_neighbour_dist > 1./60. " "& 0.8 < avg_compactness < 1.4 " "& n_relations == 0" "& max_snr >= 7.0" )
when it should be
my_query_string = ( "n_measurements >= 3 " "& n_selavy >= 2 " "& n_neighbour_dist >= 1./60. " "& 0.8 < avg_compactness < 1.4 " "& n_relations == 0" "& max_snr >= 7.0" )
The text was updated successfully, but these errors were encountered:
ddobie
Successfully merging a pull request may close this issue.
See e.g. here https://vast-survey.org/vast-tools/notebook-examples/vast-pipeline-example/
where the query string is rendering as
when it should be
The text was updated successfully, but these errors were encountered: