Skip to content
Open
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
4 changes: 2 additions & 2 deletions scripts/map_consensus.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from matplotlib.pyplot import cm


def extract_data(filepath):
def extract_data(filepath) -> None:
"""
Extracts the emission data from a text file.

Expand Down Expand Up @@ -58,7 +58,7 @@ def extract_data(filepath):
return data


def visualize_data(emission_data, output_filename="consensus_plot.svg"):
def visualize_data(emission_data, output_filename="consensus_plot.svg") -> None:
"""
Generates and saves a contour plot of the retention map.

Expand Down