Add provenance columns to all processor outputs #13
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Every
AnnotationEntryalready carriesSourceName,URL, andReferencefields, but the pKa processor doesn't extract them. Future downstream work all depends on knowing where each data point came from.Scope
Add three columns to the pKa output schema:
source_name(String, fromentry["SourceName"]),source_url(String, nullable, fromentry["URL"]), andreference(String, nullable, from the first element ofentry["Reference"]if present).Update
FlatPKaRecord, update the tests, and document this as the standard for all future processors.Definition of done
Three new columns in the output. Tests updated. Standard documented.