Skip to content

Commit

Permalink
fix: formatting issue with black
Browse files Browse the repository at this point in the history
  • Loading branch information
zietzm committed Aug 27, 2024
1 parent bf6a37a commit 4e124ca
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/maxgcp/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,11 +553,10 @@ def run_command(
):
"""Run MaxGCP on a set of GWAS summary statistics."""
logger.info("Computing genetic covariances using LDSC")
with tempfile.NamedTemporaryFile(
suffix=".tsv"
) as covariance_file, tempfile.NamedTemporaryFile(
suffix=".tsv"
) as maxgcp_weights_file:
with (
tempfile.NamedTemporaryFile(suffix=".tsv") as covariance_file,
tempfile.NamedTemporaryFile(suffix=".tsv") as maxgcp_weights_file,
):
covariance_path = Path(covariance_file.name)
compute_genetic_covariance(
gwas_paths=gwas_paths,
Expand Down

0 comments on commit 4e124ca

Please sign in to comment.