Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/kircherlab/MPRAsnake…
Browse files Browse the repository at this point in the history
…flow into feature/assignment_exact_matches
  • Loading branch information
Max Schubach committed Dec 4, 2023
2 parents d6eae77 + d2b5fdb commit 225572c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches: [master]
pull_request:
branches: [master]
branches: [master, development]

jobs:
docs:
Expand Down
2 changes: 1 addition & 1 deletion config/sbatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ assigned_counts_createAssignmentPickleFile:
assigned_counts_filterAssignment:
time: "0-01:00"
queue: "medium"
mem: 10G
mem: 15G

#################
### Statistic ###
Expand Down
2 changes: 1 addition & 1 deletion workflow/envs/python27.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ channels:
- conda-forge
dependencies:
- htslib
- pysam
- pysam>0.16.0
- python=2.7
- samtools
2 changes: 1 addition & 1 deletion workflow/scripts/count/nucleotideCountPerPosition.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def cli(input_file, column, use_header, output_file, chunksize):

nucleotides = df["DNA"].apply(lambda x: pd.Series(list(x)))

for i, columns in nucleotides.iteritems():
for i, columns in nucleotides.items():
counts_column = "Position_%d_counts" % (i+1)
ratio_column = "Position_%d_ratio" % (i+1)
if counts_column not in output.columns:
Expand Down

0 comments on commit 225572c

Please sign in to comment.