You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
I added the env_package column from harmonized_wide_repaired, aliased as env_package_repaired to the view biosample_basex_merged
I haven't renamed harmonized_wide_repaired -> harmonized_wide and harmonized_wide -> harmonized_wide_raw yet
I created a repaired column with repaired in the column name, when we are supposed to assume that a column is repaired unless it includes raw in it's name?
I'd really like to leave this new column in the view as is. Otherwise, I think I'd have to list out every column (500+ and growing) I want to retrieve from harmonized_wide and programmatically assign the env_package_raw alias to harmonized_wide.env_package
CREATEVIEWbiosample_basex_mergedASSELECT
nam.*,
bia.bp_acc ,
hwr.env_packageas env_package_repaired,
hw.*FROM
non_attribute_metadata nam
LEFT JOIN bp_id_accession bia
using("bp_id")
LEFT JOIN harmonized_wide_repaired hwr
using("raw_id")
LEFT JOIN harmonized_wide hw
using("raw_id");
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
per Chris call repaired table
biosample
and the raw tablebiosample_raw
The text was updated successfully, but these errors were encountered: