Skip to content

move print utils from biocgenerics #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions src/biocutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@
from .is_list_of_type import is_list_of_type
from .normalize_subscript import normalize_subscript
from .print_truncated_list import print_truncated_list
from .print_table import format_table
89 changes: 89 additions & 0 deletions src/biocutils/print_table.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
from typing import List, Optional, Sequence

__author__ = "Aaron Lun"
__copyright__ = "LTLA"
__license__ = "MIT"


def _get_max_width(col: List[str]):
width = 0
for y in col:
if len(y) > width:
width = len(y)
return width


def format_table(
columns: List[Sequence[str]],
floating_names: Optional[Sequence[str]] = None,
sep: str = " ",
window: Optional[int] = None,
) -> str:
"""Pretty-print a table with wrapping columns.

Args:
columns: List of list of strings, where each inner list is the same length.
Strings are typically generated by :py:meth:`~show_as_cell`.

floating_names: List of strings to be added to the left of the table. This is
printed repeatedly for each set of wrapped columns.

sep: Separator between columns.

window: Size of the terminal window, in characters. We attempt to determine
this automatically, otherwise it is set to 150.

Returns:
str: String containing the pretty-printed table.
"""
if window is None:
import os

try:
window = os.get_terminal_size().columns
except Exception as _:
window = 150

if len(columns) == 0:
raise ValueError("At least one column should be supplied in 'columns'.")
n = len(columns[0])

floatwidth = 0
if floating_names is not None:
floatwidth = _get_max_width(floating_names)
new_floating_names = []
for y in floating_names:
new_floating_names.append(y.rjust(floatwidth))
floating_names = new_floating_names

output = ""

def reinitialize():
if floating_names is None:
return [""] * n
else:
return floating_names[:]

contents = reinitialize()
init = True
used = floatwidth

for col in columns:
width = _get_max_width(col)

if not init and used + width + len(sep) > window:
for line in contents:
output += line + "\n"
contents = reinitialize()
init = True
used = floatwidth

for i, y in enumerate(col):
if used > 0:
contents[i] += sep
contents[i] += y.rjust(width)
used += width + len(sep)
init = False

output += "\n".join(contents)
return output
17 changes: 17 additions & 0 deletions tests/test_print_table.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from biocutils import format_table


def test_format_table():
contents = [
["asdasd", "1", "2", "3", "4"],
[""] + ["|"] * 4,
["asyudgausydga", "A", "B", "C", "D"],
]
print(format_table(contents))
print(format_table(contents, floating_names=["", "aarg", "boo", "ffoo", "stuff"]))
print(format_table(contents, window=10))
print(
format_table(
contents, window=10, floating_names=["", "AAAR", "BBBB", "XXX", "STUFF"]
)
)