Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

v1.0.1 (Sourcery refactored) #70

Merged
merged 1 commit into from
Oct 6, 2021
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
2 changes: 1 addition & 1 deletion ifpd2/scripts/extract_kmers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
def main(input_path: str, output_path: str, kmer_size: int) -> None:
seqRec = SeqIO.parse(input_path, "fasta")

oligos_list = list()
oligos_list = []
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function main refactored with the following changes:

for record in seqRec:
record = record
for i in range(len(record) - kmer_size + 1):
Expand Down