Error developing search for database

@qoobbell In your page’s onReady() function you call a routine called loadGemini() or loadGemini-one() but you don’t have that function in your code. As you can see, you have errors flagged.

Maybe what you meant was

$w.onReady(() => {
  loadGenome_Composition()
});

BTW - The name loadGemini-one is invalid, a dash cannot be used in a function or variable name. The name Gemini-one for the collection is OK however.

I would suggest starting with the example. Once you see it working, you can then make changes to the code to adapt to your requirements.