Skip to content

Commit ba7227e

Browse files
committed
add ascii art to source headers
1 parent bcf8ed7 commit ba7227e

File tree

7 files changed

+97
-0
lines changed

7 files changed

+97
-0
lines changed

src/decompose_ref.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# ------------------------------------------------------------------------------
2+
# __ _____ __
3+
# ____ ___ ____ _/ /__/ ___/_________ __ __/ /_
4+
# / __ \/ _ \/ __ `/ //_/\__ \/ ___/ __ \/ / / / __/
5+
# / /_/ / __/ /_/ / ,< ___/ / /__/ /_/ / /_/ / /_
6+
# / .___/\___/\__,_/_/|_|/____/\___/\____/\__,_/\__/
7+
# /_/
8+
#
9+
# Copyrigh 2025 GNU AFFERO GENERAL PUBLIC LICENSE
10+
# Alexander L. Lin, Lana A. Cartailler, Jean-Philippe Cartailler
11+
# https://github.com/vandydata/peakScout
12+
#
13+
# ------------------------------------------------------------------------------
14+
115
import polars as pl
216
import os
317

src/gene2peak.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# ------------------------------------------------------------------------------
2+
# __ _____ __
3+
# ____ ___ ____ _/ /__/ ___/_________ __ __/ /_
4+
# / __ \/ _ \/ __ `/ //_/\__ \/ ___/ __ \/ / / / __/
5+
# / /_/ / __/ /_/ / ,< ___/ / /__/ /_/ / /_/ / /_
6+
# / .___/\___/\__,_/_/|_|/____/\___/\____/\__,_/\__/
7+
# /_/
8+
#
9+
# Copyrigh 2025 GNU AFFERO GENERAL PUBLIC LICENSE
10+
# Alexander L. Lin, Lana A. Cartailler, Jean-Philippe Cartailler
11+
# https://github.com/vandydata/peakScout
12+
#
13+
# ------------------------------------------------------------------------------
14+
115
import pandas as pd
216
import polars as pl
317
from process_features import get_nearest_features, decompose_features

src/peak2gene.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# ------------------------------------------------------------------------------
2+
# __ _____ __
3+
# ____ ___ ____ _/ /__/ ___/_________ __ __/ /_
4+
# / __ \/ _ \/ __ `/ //_/\__ \/ ___/ __ \/ / / / __/
5+
# / /_/ / __/ /_/ / ,< ___/ / /__/ /_/ / /_/ / /_
6+
# / .___/\___/\__,_/_/|_|/____/\___/\____/\__,_/\__/
7+
# /_/
8+
#
9+
# Copyrigh 2025 GNU AFFERO GENERAL PUBLIC LICENSE
10+
# Alexander L. Lin, Lana A. Cartailler, Jean-Philippe Cartailler
11+
# https://github.com/vandydata/peakScout
12+
#
13+
# ------------------------------------------------------------------------------
14+
115
import pandas as pd
216
import polars as pl
317
import os

src/peakScout

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
#!/usr/bin/env python3
22

3+
# ------------------------------------------------------------------------------
4+
# __ _____ __
5+
# ____ ___ ____ _/ /__/ ___/_________ __ __/ /_
6+
# / __ \/ _ \/ __ `/ //_/\__ \/ ___/ __ \/ / / / __/
7+
# / /_/ / __/ /_/ / ,< ___/ / /__/ /_/ / /_/ / /_
8+
# / .___/\___/\__,_/_/|_|/____/\___/\____/\__,_/\__/
9+
# /_/
10+
#
11+
# Copyrigh 2025 GNU AFFERO GENERAL PUBLIC LICENSE
12+
# Alexander L. Lin, Lana A. Cartailler, Jean-Philippe Cartailler
13+
# https://github.com/vandydata/peakScout
14+
#
15+
# ------------------------------------------------------------------------------
16+
317
import argparse
418
from peak2gene import peak2gene
519
from gene2peak import gene2peak

src/process_features.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# ------------------------------------------------------------------------------
2+
# __ _____ __
3+
# ____ ___ ____ _/ /__/ ___/_________ __ __/ /_
4+
# / __ \/ _ \/ __ `/ //_/\__ \/ ___/ __ \/ / / / __/
5+
# / /_/ / __/ /_/ / ,< ___/ / /__/ /_/ / /_/ / /_
6+
# / .___/\___/\__,_/_/|_|/____/\___/\____/\__,_/\__/
7+
# /_/
8+
#
9+
# Copyrigh 2025 GNU AFFERO GENERAL PUBLIC LICENSE
10+
# Alexander L. Lin, Lana A. Cartailler, Jean-Philippe Cartailler
11+
# https://github.com/vandydata/peakScout
12+
#
13+
# ------------------------------------------------------------------------------
114
import polars as pl
215
import numpy as np
316

src/process_input.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# ------------------------------------------------------------------------------
2+
# __ _____ __
3+
# ____ ___ ____ _/ /__/ ___/_________ __ __/ /_
4+
# / __ \/ _ \/ __ `/ //_/\__ \/ ___/ __ \/ / / / __/
5+
# / /_/ / __/ /_/ / ,< ___/ / /__/ /_/ / /_/ / /_
6+
# / .___/\___/\__,_/_/|_|/____/\___/\____/\__,_/\__/
7+
# /_/
8+
#
9+
# Copyrigh 2025 GNU AFFERO GENERAL PUBLIC LICENSE
10+
# Alexander L. Lin, Lana A. Cartailler, Jean-Philippe Cartailler
11+
# https://github.com/vandydata/peakScout
12+
#
13+
# ------------------------------------------------------------------------------
14+
115
import polars as pl
216
import os
317

src/write_output.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# ------------------------------------------------------------------------------
2+
# __ _____ __
3+
# ____ ___ ____ _/ /__/ ___/_________ __ __/ /_
4+
# / __ \/ _ \/ __ `/ //_/\__ \/ ___/ __ \/ / / / __/
5+
# / /_/ / __/ /_/ / ,< ___/ / /__/ /_/ / /_/ / /_
6+
# / .___/\___/\__,_/_/|_|/____/\___/\____/\__,_/\__/
7+
# /_/
8+
#
9+
# Copyrigh 2025 GNU AFFERO GENERAL PUBLIC LICENSE
10+
# Alexander L. Lin, Lana A. Cartailler, Jean-Philippe Cartailler
11+
# https://github.com/vandydata/peakScout
12+
#
13+
# ------------------------------------------------------------------------------
14+
115
import pandas as pd
216
import os
317
from openpyxl.styles import PatternFill

0 commit comments

Comments
 (0)