We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee95737 commit f8509f4Copy full SHA for f8509f4
rules/work/genes/scripts/gnomad_constraints_v4_to_tsv.py
@@ -57,6 +57,8 @@ def main(
57
.with_columns(pl.lit(None).alias(col) for col in additional_columns)
58
.join(ensembl_xlink, on=["ensembl_transcript_id"])
59
.select(columns_dst)
60
+ .with_columns(pl.exclude(pl.String).cast(str))
61
+ .fill_null("NA")
62
)
63
df.write_csv(output_tsv_path, separator="\t")
64
shell(f"md5sum {output_tsv_path} > {output_tsv_md5_path}")
0 commit comments