Skip to content

Commit e17845e

Browse files
adding copyright to every py file
1 parent cdc5747 commit e17845e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+171
-0
lines changed

suite2p/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
from .version import version
25
from .default_ops import default_ops
36
from .run_s2p import run_s2p, run_plane, pipeline

suite2p/__main__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
import argparse
25
import numpy as np
36
from suite2p import default_ops, version

suite2p/classification/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
from .classifier import Classifier
25
from .classify import classify, builtin_classfile, user_classfile

suite2p/classification/classifier.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
import numpy as np
25
from scipy.ndimage import gaussian_filter
36
from sklearn.linear_model import LogisticRegression

suite2p/classification/classify.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
import numpy as np
25
from pathlib import Path
36
from typing import Union, Sequence

suite2p/default_ops.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
from .version import version
25

36

suite2p/detection/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
from .detect import detect, detection_wrapper, bin_movie
25
from .stats import roi_stats, ROI

suite2p/detection/anatomical.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
import numpy as np
25
from typing import Any, Dict
36
from scipy.ndimage import find_objects, gaussian_filter

suite2p/detection/chan2detect.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
import numpy as np
25
from scipy.ndimage import gaussian_filter
36
from ..extraction import masks

suite2p/detection/denoise.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Copright © 2023 Howard Hughes Medical Institute, Authored by Carsen Stringer and Marius Pachitariu.
3+
"""
14
import numpy as np
25
from typing import List
36
import time

0 commit comments

Comments
 (0)