Skip to content

Commit

Permalink
set logo to external variable
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed May 23, 2024
1 parent a676df0 commit 110b4ae
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions anglerfish/anglerfish.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@

MAX_PROCESSES = 64 # Ought to be enough for anybody

anglerfish_logo = """
___
( ) \ -..__
_.|~”~~~”…_
^´ `>.
(+ (+ ) “<..<^(
`´ ``´ ___ (
\__..~ __( _…_(
\ /
“--…_ _..~%´
```´´
"""

def run_demux(args):
multiprocessing.set_start_method("spawn")
Expand All @@ -38,18 +50,7 @@ def run_demux(args):
ss = SampleSheet(args.samplesheet, args.ont_barcodes)
version = pkg_resources.get_distribution("bio-anglerfish").version
report = Report(args.run_name, run_uuid, version)
sys.stderr.write("""
___
( ) \ -..__
_.|~”~~~”…_
^´ `>.
(+ (+ ) “<..<^(
`´ ``´ ___ (
\__..~ __( _…_(
\ /
“--…_ _..~%´
```´´
""")
sys.stderr.write(anglerfish_logo)
log.info(f" version {version}")
log.info(f" arguments {vars(args)}")
log.info(f" run uuid {run_uuid}")
Expand Down

0 comments on commit 110b4ae

Please sign in to comment.