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
In current SA Path code - we reloaded a VCF in place where an extra sample had been added
This caused a different packed field index for sample sample name:
for i, sample_name in enumerate(sample_names):
sample = vcf.samples_by_vcf_name[sample_name]
logging.info("Creating cohort sample for: %s", sample)
CohortSample.objects.get_or_create(cohort=cohort,
sample=sample,
defaults={
"cohort_genotype_packed_field_index": i,
"sort_order": i,
})
In current SA Path code - we reloaded a VCF in place where an extra sample had been added
This caused a different packed field index for sample sample name:
Then died with:
Maybe a hack would be to set the index super high with:
The text was updated successfully, but these errors were encountered: