Skip to content
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

fix copyright notices #40

Merged
merged 3 commits into from
Oct 16, 2022
Merged
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: 0 additions & 1 deletion dance/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import logging

from dance import config
Expand Down
1 change: 0 additions & 1 deletion dance/data/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import os
import urllib.request
import zipfile
Expand Down
1 change: 0 additions & 1 deletion dance/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# Copyright 2022 DSE lab. All rights reserved.
1 change: 0 additions & 1 deletion dance/modules/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# Copyright 2022 DSE lab. All rights reserved.
1 change: 0 additions & 1 deletion dance/modules/multi_modality/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# Copyright 2022 DSE lab. All rights reserved.
1 change: 0 additions & 1 deletion dance/modules/multi_modality/joint_embedding/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
from .dcca import DCCA
from .jae import JAE
from .scmogcn import ScMoGCNWrapper
Expand Down
1 change: 0 additions & 1 deletion dance/modules/multi_modality/match_modality/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
from .cmae import CMAE
from .scmm import MMVAE
from .scmogcn import ScMoGCNWrapper
Expand Down
1 change: 0 additions & 1 deletion dance/modules/multi_modality/predict_modality/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
from .babel import BabelWrapper
from .cmae import CMAE
from .scmm import MMVAE
Expand Down
1 change: 0 additions & 1 deletion dance/modules/single_modality/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# Copyright 2022 DSE lab. All rights reserved.
1 change: 0 additions & 1 deletion dance/modules/single_modality/clustering/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
from .graphsc import GraphSC
from .scdcc import ScDCC
from .scdeepcluster import ScDeepCluster
Expand Down
1 change: 0 additions & 1 deletion dance/modules/single_modality/imputation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
from .deepimpute import DeepImpute
from .graphsci import GraphSCI
from .scgnn import scGNN
Expand Down
1 change: 0 additions & 1 deletion dance/modules/spatial/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# Copyright 2022 DSE lab. All rights reserved.
1 change: 0 additions & 1 deletion dance/modules/spatial/cell_type_deconvo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
from .card import Card
from .dstg import DSTGLearner
from .spatialdecon import SpatialDecon
Expand Down
1 change: 0 additions & 1 deletion dance/modules/spatial/spatial_domain/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
from .louvain import Louvain
from .spagcn import SpaGCN
from .stagate import Stagate
Expand Down
1 change: 0 additions & 1 deletion dance/plotting/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# Copyright 2022 DSE lab. All rights reserved.
1 change: 0 additions & 1 deletion dance/transforms/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# Copyright 2022 DSE lab. All rights reserved.
1 change: 0 additions & 1 deletion dance/transforms/graph_construct.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import itertools
import os
import pickle
Expand Down
1 change: 0 additions & 1 deletion dance/transforms/preprocess.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import collections
import os
import pprint
Expand Down
1 change: 0 additions & 1 deletion dance/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import math
import os
import random
Expand Down
2 changes: 0 additions & 2 deletions dance/utils/loss.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.

import math
from typing import *

Expand Down
1 change: 0 additions & 1 deletion dance/utils/metrics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import random

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'dance'
copyright = '2022, DANCE Team'
copyright = '2022, OmicsML'
author = 'DANCE Team'
release = '1.0.0'

Expand Down
1 change: 0 additions & 1 deletion examples/spatial/spatial_domain/louvain.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import argparse

from dance.datasets.spatial import SpotDataset
Expand Down
1 change: 0 additions & 1 deletion examples/spatial/spatial_domain/spagcn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import argparse

from sklearn.metrics import adjusted_mutual_info_score
Expand Down
1 change: 0 additions & 1 deletion examples/spatial/spatial_domain/stagate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import argparse

import scanpy as sc
Expand Down
1 change: 0 additions & 1 deletion examples/spatial/spatial_domain/stlearn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2022 DSE lab. All rights reserved.
import argparse
import os

Expand Down