The simplest way is putting the line
do_not_submerge["name-of-your-ore"] = true
in the data.lua file in the top level of your mod, with name-of-your-ore substituted with the actual name you set in code.
do_not_submerge is a table created by Dredgeworks; when Dredgeworks starts creating the submerged version of an ore, it checks if there's any nonzero value (like 'true') in the key ('name', seen above in the [] brackets) that corresponds to the name of the ore being considered for submersion, and skips it if that's the case.
Additionally, it's probably best to add add "? dredgeworks >= 0.7.4" to make it an optional dependency in your mod info file (info.json, also in that same folder) to ensure that do_not_submerge exists at the time you modify it.