Skip to content

Commit

Permalink
chore(one-offs): minor tweaks to liftover [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jan 17, 2024
1 parent ca3ea47 commit 62e0b3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion one-offs/hpc/peaks_liftover.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#SBATCH --mem=8G
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=1
#SBATCH --time=24:00:00
#SBATCH --time=1:00:00
#SBATCH --account=rrg-bourqueg-ad

module load nixpkgs/16.09 gcc/7.3.0
Expand Down
2 changes: 1 addition & 1 deletion one-offs/hpc/peaks_liftover.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def main():
delimiter=",",
quotechar='"')
writer.writeheader()
for row in tqdm.tqdm(lift_over_qtl_rows(qtl_rows, snps_to_lift_over, lifted_over_peaks), desc="qtl writer"):
for row in lift_over_qtl_rows(qtl_rows, snps_to_lift_over, lifted_over_peaks):
writer.writerow(row)


Expand Down

0 comments on commit 62e0b3e

Please sign in to comment.