8 lines
143 B
Python
Executable File
8 lines
143 B
Python
Executable File
#!/usr/bin/env python
|
|
"""Entry point for sc_tools (single_cell_tools)."""
|
|
|
|
from workflow_glue import cli
|
|
|
|
if __name__ == '__main__':
|
|
cli()
|