Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AG-1196: Sort gene_info.biodomains to generate consistent ordering #86

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/agoradatatools/etl/transform/gene_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ def transform_gene_info(
.rename(columns={"biodomain": "biodomains"})
)

# sort biodomains list alphabetically
biodomains['biodomains'] = biodomains['biodomains'].apply(sorted)

# For genes with either is_adi or is_tep set to True, create a resource URL that opens
# the portal page to the specific gene. This must be done using the hgnc_symbol from the
# tep_info file and not the symbol in gene_info, because there are some mismatches
Expand All @@ -95,7 +98,6 @@ def transform_gene_info(
)

# Merge all the datasets

gene_info = gene_metadata

for dataset in [
Expand Down
Loading