biopipen 0.29.2__py3-none-any.whl → 0.31.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biopipen might be problematic. Click here for more details.
- biopipen/__init__.py +1 -1
- biopipen/core/config.toml +2 -0
- biopipen/core/filters.py +21 -0
- biopipen/ns/plot.py +55 -0
- biopipen/ns/scrna.py +110 -21
- biopipen/ns/web.py +87 -5
- biopipen/scripts/bam/CNAClinic.R +2 -1
- biopipen/scripts/cellranger/CellRangerCount.py +3 -3
- biopipen/scripts/cellranger/CellRangerSummary.R +2 -1
- biopipen/scripts/cnv/AneuploidyScore.R +1 -1
- biopipen/scripts/cnv/AneuploidyScoreSummary.R +2 -2
- biopipen/scripts/delim/RowsBinder.R +1 -1
- biopipen/scripts/delim/SampleInfo.R +3 -2
- biopipen/scripts/gene/GeneNameConversion.R +2 -2
- biopipen/scripts/gsea/Enrichr.R +3 -3
- biopipen/scripts/gsea/FGSEA.R +2 -2
- biopipen/scripts/gsea/GSEA.R +2 -2
- biopipen/scripts/gsea/PreRank.R +2 -2
- biopipen/scripts/plot/Heatmap.R +3 -3
- biopipen/scripts/plot/Manhattan.R +2 -1
- biopipen/scripts/plot/QQPlot.R +1 -1
- biopipen/scripts/plot/ROC.R +1 -1
- biopipen/scripts/plot/Scatter.R +112 -0
- biopipen/scripts/plot/VennDiagram.R +3 -3
- biopipen/scripts/regulatory/MotifAffinityTest.R +3 -7
- biopipen/scripts/rnaseq/Simulation.R +1 -1
- biopipen/scripts/rnaseq/UnitConversion.R +2 -1
- biopipen/scripts/scrna/AnnData2Seurat.R +1 -1
- biopipen/scripts/scrna/CellTypeAnnotation-celltypist.R +24 -8
- biopipen/scripts/scrna/CellTypeAnnotation-common.R +10 -0
- biopipen/scripts/scrna/CellTypeAnnotation-direct.R +9 -1
- biopipen/scripts/scrna/CellTypeAnnotation-hitype.R +12 -8
- biopipen/scripts/scrna/CellTypeAnnotation-sccatch.R +15 -2
- biopipen/scripts/scrna/CellTypeAnnotation-sctype.R +38 -15
- biopipen/scripts/scrna/CellTypeAnnotation.R +3 -0
- biopipen/scripts/scrna/CellsDistribution.R +4 -3
- biopipen/scripts/scrna/DimPlots.R +1 -1
- biopipen/scripts/scrna/ExprImputation-alra.R +1 -1
- biopipen/scripts/scrna/MarkersFinder.R +5 -5
- biopipen/scripts/scrna/MetaMarkers.R +4 -4
- biopipen/scripts/scrna/ModuleScoreCalculator.R +2 -1
- biopipen/scripts/scrna/RadarPlots.R +1 -1
- biopipen/scripts/scrna/ScFGSEA.R +4 -3
- biopipen/scripts/scrna/ScSimulation.R +64 -0
- biopipen/scripts/scrna/Seurat2AnnData.R +1 -1
- biopipen/scripts/scrna/SeuratClusterStats-clustree.R +73 -0
- biopipen/scripts/scrna/SeuratClusterStats-dimplots.R +4 -3
- biopipen/scripts/scrna/SeuratClusterStats-features.R +6 -5
- biopipen/scripts/scrna/SeuratClusterStats-hists.R +6 -5
- biopipen/scripts/scrna/SeuratClusterStats-ngenes.R +4 -3
- biopipen/scripts/scrna/SeuratClusterStats-stats.R +20 -25
- biopipen/scripts/scrna/SeuratClusterStats.R +24 -8
- biopipen/scripts/scrna/SeuratClustering-common.R +213 -0
- biopipen/scripts/scrna/SeuratClustering.R +10 -170
- biopipen/scripts/scrna/SeuratMap2Ref.R +98 -54
- biopipen/scripts/scrna/SeuratMetadataMutater.R +2 -2
- biopipen/scripts/scrna/SeuratPreparing-common.R +452 -0
- biopipen/scripts/scrna/SeuratPreparing-doublet_detection.R +201 -0
- biopipen/scripts/scrna/SeuratPreparing.R +22 -562
- biopipen/scripts/scrna/SeuratSubClustering.R +24 -39
- biopipen/scripts/scrna/TopExpressingGenes.R +1 -1
- biopipen/scripts/scrna_metabolic_landscape/MetabolicFeatures.R +2 -2
- biopipen/scripts/scrna_metabolic_landscape/MetabolicFeaturesIntraSubset.R +2 -2
- biopipen/scripts/scrna_metabolic_landscape/MetabolicPathwayActivity.R +3 -3
- biopipen/scripts/scrna_metabolic_landscape/MetabolicPathwayHeterogeneity.R +3 -3
- biopipen/scripts/snp/MatrixEQTL.R +1 -1
- biopipen/scripts/snp/PlinkCallRate.R +2 -2
- biopipen/scripts/snp/PlinkFreq.R +2 -2
- biopipen/scripts/snp/PlinkHWE.R +2 -2
- biopipen/scripts/snp/PlinkHet.R +2 -2
- biopipen/scripts/snp/PlinkIBD.R +2 -2
- biopipen/scripts/stats/ChowTest.R +1 -1
- biopipen/scripts/stats/DiffCoexpr.R +1 -1
- biopipen/scripts/stats/LiquidAssoc.R +1 -1
- biopipen/scripts/stats/Mediation.R +11 -9
- biopipen/scripts/stats/MetaPvalue.R +4 -1
- biopipen/scripts/stats/MetaPvalue1.R +4 -1
- biopipen/scripts/tcr/Attach2Seurat.R +1 -1
- biopipen/scripts/tcr/CDR3AAPhyschem.R +1 -1
- biopipen/scripts/tcr/CloneResidency.R +2 -2
- biopipen/scripts/tcr/CloneSizeQQPlot.R +2 -2
- biopipen/scripts/tcr/Immunarch-basic.R +0 -4
- biopipen/scripts/tcr/Immunarch-clonality.R +0 -4
- biopipen/scripts/tcr/Immunarch-diversity.R +2 -24
- biopipen/scripts/tcr/Immunarch-geneusage.R +0 -2
- biopipen/scripts/tcr/Immunarch-kmer.R +0 -2
- biopipen/scripts/tcr/Immunarch-overlap.R +0 -2
- biopipen/scripts/tcr/Immunarch-spectratyping.R +0 -2
- biopipen/scripts/tcr/Immunarch-tracking.R +0 -2
- biopipen/scripts/tcr/Immunarch-vjjunc.R +0 -2
- biopipen/scripts/tcr/Immunarch.R +43 -11
- biopipen/scripts/tcr/ImmunarchFilter.R +1 -1
- biopipen/scripts/tcr/ImmunarchLoading.R +2 -2
- biopipen/scripts/tcr/SampleDiversity.R +1 -1
- biopipen/scripts/tcr/TCRClusterStats.R +2 -2
- biopipen/scripts/tcr/TCRClustering.R +2 -2
- biopipen/scripts/tcr/TESSA.R +2 -2
- biopipen/scripts/vcf/TruvariBenchSummary.R +2 -2
- biopipen/scripts/vcf/TruvariConsistency.R +1 -1
- biopipen/scripts/web/GCloudStorageDownloadBucket.py +82 -0
- biopipen/scripts/web/GCloudStorageDownloadFile.py +23 -0
- biopipen/scripts/web/gcloud_common.py +49 -0
- {biopipen-0.29.2.dist-info → biopipen-0.31.0.dist-info}/METADATA +7 -7
- {biopipen-0.29.2.dist-info → biopipen-0.31.0.dist-info}/RECORD +106 -96
- {biopipen-0.29.2.dist-info → biopipen-0.31.0.dist-info}/WHEEL +0 -0
- {biopipen-0.29.2.dist-info → biopipen-0.31.0.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import concurrent.futures
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
from biopipen.utils.misc import run_command, dict_to_cli_args, logger
|
|
5
|
+
from biopipen.scripts.web.gcloud_common import (
|
|
6
|
+
is_logged_in,
|
|
7
|
+
is_valid_gs_bucket_url,
|
|
8
|
+
get_file_path,
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
url = {{in.url | repr}} # pyright: ignore # noqa: E999
|
|
12
|
+
outdir = Path({{out.outdir | repr}}) # pyright: ignore
|
|
13
|
+
gcloud = {{envs.gcloud | repr}} # pyright: ignore
|
|
14
|
+
keep_structure = {{envs.keep_structure | repr}} # pyright: ignore
|
|
15
|
+
ncores = {{envs.ncores | repr}} # pyright: ignore
|
|
16
|
+
args = {{envs.args | repr}} # pyright: ignore
|
|
17
|
+
|
|
18
|
+
if not is_valid_gs_bucket_url(url):
|
|
19
|
+
raise Exception(
|
|
20
|
+
f"Invalid Google Cloud Storage URL for a bucket: {url}. "
|
|
21
|
+
"URL should be in the format gs://bucket"
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
if not is_logged_in(gcloud):
|
|
25
|
+
raise Exception(
|
|
26
|
+
"You need to be logged in to gcloud to download files. "
|
|
27
|
+
"Please run `gcloud auth login` first."
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def create_folders(folder_lines):
|
|
32
|
+
for folder_line in folder_lines:
|
|
33
|
+
folder_path = get_file_path(folder_line)
|
|
34
|
+
folder = outdir / folder_path
|
|
35
|
+
folder.mkdir(parents=True, exist_ok=True)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def download_file(i: int, line: str, total: int):
|
|
39
|
+
path = get_file_path(line)
|
|
40
|
+
|
|
41
|
+
if total <= 50:
|
|
42
|
+
logger.info(f"Downloading {path}")
|
|
43
|
+
elif 50 < total <= 500:
|
|
44
|
+
if i % 10 == 0:
|
|
45
|
+
logger.info(f"Downloading {i}/{total} ...")
|
|
46
|
+
else:
|
|
47
|
+
if i % 100 == 0:
|
|
48
|
+
logger.info(f"Downloading {i}/{total} ...")
|
|
49
|
+
|
|
50
|
+
if keep_structure:
|
|
51
|
+
target = (outdir / path)
|
|
52
|
+
else:
|
|
53
|
+
name = Path(path).name
|
|
54
|
+
target = outdir / name
|
|
55
|
+
if target.exists():
|
|
56
|
+
new_name = f"g{i}-{name}"
|
|
57
|
+
logger.warning(f"{name} already exists. Renaming to {new_name}.")
|
|
58
|
+
target = outdir / new_name
|
|
59
|
+
|
|
60
|
+
gs_args = args.copy()
|
|
61
|
+
gs_args[""] = [gcloud, "storage", "cp", line, target]
|
|
62
|
+
run_command(dict_to_cli_args(gs_args, dashify=True), fg=True)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def download_bucket():
|
|
66
|
+
out = run_command([gcloud, "storage", "ls", "--recursive", url], stdout="RETURN")
|
|
67
|
+
# remove empty lines and skip the root
|
|
68
|
+
out = list(filter(None, out.splitlines()[1:]))
|
|
69
|
+
if keep_structure:
|
|
70
|
+
# create folders first
|
|
71
|
+
logger.info(f"Creating folders to keep structure.")
|
|
72
|
+
folder_lines = [line[:-2] for line in out if line.endswith("/:")]
|
|
73
|
+
create_folders(folder_lines)
|
|
74
|
+
|
|
75
|
+
out = [line for line in out if not line.endswith("/:")]
|
|
76
|
+
length = len(out)
|
|
77
|
+
with concurrent.futures.ProcessPoolExecutor(max_workers=ncores) as executor:
|
|
78
|
+
executor.map(download_file, range(length), out, [length] * length)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
if __name__ == "__main__":
|
|
82
|
+
download_bucket()
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from biopipen.utils.misc import run_command, dict_to_cli_args
|
|
2
|
+
from biopipen.scripts.web.gcloud_common import is_logged_in, is_valid_gs_file_url
|
|
3
|
+
|
|
4
|
+
url = {{in.url | repr}} # pyright: ignore # noqa: E999
|
|
5
|
+
outfile = {{out.outfile | repr}} # pyright: ignore
|
|
6
|
+
gcloud = {{envs.gcloud | repr}} # pyright: ignore
|
|
7
|
+
args = {{envs.args | repr}} # pyright: ignore
|
|
8
|
+
|
|
9
|
+
if not is_valid_gs_file_url(url):
|
|
10
|
+
raise Exception(
|
|
11
|
+
f"Invalid Google Cloud Storage URL for a file: {url}. "
|
|
12
|
+
"URL should be in the format gs://bucket/path/to/file"
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
if not is_logged_in(gcloud):
|
|
16
|
+
raise Exception(
|
|
17
|
+
"You need to be logged in to gcloud to download files. "
|
|
18
|
+
"Please run `gcloud auth login` first."
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
args[""] = [gcloud, "storage", "cp", url, outfile]
|
|
22
|
+
|
|
23
|
+
run_command(dict_to_cli_args(args, dashify=True), fg=True)
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"""Provides common functions for interacting with Google Cloud Storage."""
|
|
2
|
+
from biopipen.utils.misc import run_command
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
def is_logged_in(gcloud: str) -> bool:
|
|
6
|
+
"""Check if the user is logged in to Google Cloud Storage.
|
|
7
|
+
|
|
8
|
+
Args:
|
|
9
|
+
gcloud: Path to the `gcloud` executable.
|
|
10
|
+
|
|
11
|
+
Returns:
|
|
12
|
+
bool: True if the user is logged in, False otherwise.
|
|
13
|
+
"""
|
|
14
|
+
out = run_command([gcloud, "auth", "list"], stdout="RETURN")
|
|
15
|
+
return "ACTIVE" in out
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def is_valid_gs_bucket_url(url: str) -> bool:
|
|
19
|
+
"""Check if a URL is a valid Google Cloud Storage bucket URL.
|
|
20
|
+
|
|
21
|
+
Such as `gs://bucket`.
|
|
22
|
+
"""
|
|
23
|
+
if not url.startswith("gs://"):
|
|
24
|
+
return False
|
|
25
|
+
|
|
26
|
+
url = url.rstrip("/")
|
|
27
|
+
return "/" not in url[5:]
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def get_file_path(url: str) -> str:
|
|
31
|
+
"""Get the file path from a Google Cloud Storage file URL, without bucket.
|
|
32
|
+
|
|
33
|
+
For example: gs://bucket/path/to/file -> path/to/file
|
|
34
|
+
|
|
35
|
+
Args:
|
|
36
|
+
url: The Google Cloud Storage file URL.
|
|
37
|
+
|
|
38
|
+
Returns:
|
|
39
|
+
str: The file path.
|
|
40
|
+
"""
|
|
41
|
+
return url[5:].split("/", 1)[1]
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def is_valid_gs_file_url(url: str) -> bool:
|
|
45
|
+
"""Check if a URL is a valid Google Cloud Storage file URL.
|
|
46
|
+
|
|
47
|
+
Such as `gs://bucket/path/to/file`.
|
|
48
|
+
"""
|
|
49
|
+
return url.startswith("gs://")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: biopipen
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.31.0
|
|
4
4
|
Summary: Bioinformatics processes/pipelines that can be run from `pipen run`
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: pwwang
|
|
@@ -14,9 +14,9 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
15
|
Provides-Extra: runinfo
|
|
16
16
|
Requires-Dist: datar[pandas] (>=0.15.6,<0.16.0)
|
|
17
|
-
Requires-Dist: pipen-board[report] (>=0.
|
|
18
|
-
Requires-Dist: pipen-cli-run (>=0.
|
|
19
|
-
Requires-Dist: pipen-filters (>=0.
|
|
20
|
-
Requires-Dist: pipen-poplog (>=0.
|
|
21
|
-
Requires-Dist: pipen-runinfo (>=0.
|
|
22
|
-
Requires-Dist: pipen-verbose (>=0.
|
|
17
|
+
Requires-Dist: pipen-board[report] (>=0.16,<0.17)
|
|
18
|
+
Requires-Dist: pipen-cli-run (>=0.14,<0.15)
|
|
19
|
+
Requires-Dist: pipen-filters (>=0.14,<0.15)
|
|
20
|
+
Requires-Dist: pipen-poplog (>=0.2.0,<0.3.0)
|
|
21
|
+
Requires-Dist: pipen-runinfo (>=0.7,<0.8) ; extra == "runinfo"
|
|
22
|
+
Requires-Dist: pipen-verbose (>=0.12,<0.13)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
biopipen/__init__.py,sha256=
|
|
1
|
+
biopipen/__init__.py,sha256=TJt1pYzTJuPE6GzDP1gxaeeVQlzcoUyEmSVSUPgYnIA,23
|
|
2
2
|
biopipen/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
biopipen/core/config.py,sha256=edK5xnDhM8j27srDzsxubi934NMrglLoKrdcC8qsEPk,1069
|
|
4
|
-
biopipen/core/config.toml,sha256=
|
|
4
|
+
biopipen/core/config.toml,sha256=7IXvviRicZ2D1h6x3BVgbLJ96nsh-ikvZ0sVlQepqFE,1944
|
|
5
5
|
biopipen/core/defaults.py,sha256=yPeehPLk_OYCf71IgRVCWuQRxLAMixDF81Ium0HtPKI,344
|
|
6
|
-
biopipen/core/filters.py,sha256
|
|
6
|
+
biopipen/core/filters.py,sha256=5bZsbpdW7DCxqiteRdb2gelmXvfqWPmPsFxrpHdWsoE,12987
|
|
7
7
|
biopipen/core/proc.py,sha256=60lUP3PcUAaKbDETo9N5PEIoeOYrLgcSmuytmrhcx8g,912
|
|
8
8
|
biopipen/core/testing.py,sha256=lZ_R5ZbYPO2NPuLHdbzg6HbD_f4j8paVVbyeUqwg6FE,3411
|
|
9
9
|
biopipen/ns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -18,17 +18,17 @@ biopipen/ns/delim.py,sha256=fejsh4KW1TG5oMZzAC238LvQhBz7brXkfl3BHfnLK5M,5612
|
|
|
18
18
|
biopipen/ns/gene.py,sha256=rty-Bjcf87v2vyb9X4kRvfrQ6XQYXgN4f2ftFO0nWA8,3888
|
|
19
19
|
biopipen/ns/gsea.py,sha256=EsNRAPYsagaV2KYgr4Jv0KCnZGqayM209v4yOGGTIOI,7423
|
|
20
20
|
biopipen/ns/misc.py,sha256=qXcm0RdR6W-xpYGgQn3v7JBeYRWwVm5gtgSj2tdVxx4,2935
|
|
21
|
-
biopipen/ns/plot.py,sha256=
|
|
21
|
+
biopipen/ns/plot.py,sha256=_dGLKpyHiJqLIIQu5tqCk8H5BkgGBh_qRUZHkjnOgtE,18080
|
|
22
22
|
biopipen/ns/regulatory.py,sha256=qvc9QrwgwCI_lg0DQ2QOZbAhC8BAD1qnQXSGtAGlVcY,11750
|
|
23
23
|
biopipen/ns/rnaseq.py,sha256=bKAa6friFWof4yDTWZQahm1MS-lrdetO1GqDKdfxXYc,7708
|
|
24
|
-
biopipen/ns/scrna.py,sha256=
|
|
24
|
+
biopipen/ns/scrna.py,sha256=fXP_h7gchcuk_Jwos0IgY_P8ON6Q995OgKHgdrxfvAY,112868
|
|
25
25
|
biopipen/ns/scrna_metabolic_landscape.py,sha256=6AhaynGG3lNRi96N2tReVT46BJMuEwooSSd2irBoN80,28347
|
|
26
26
|
biopipen/ns/snp.py,sha256=-Jx5Hsv_7KV7TqLU0nHCaPkMEN0CFdi4tNVlyq0rUZ4,27259
|
|
27
27
|
biopipen/ns/stats.py,sha256=DlPyK5Vsg6ZEkV9SDS3aAw21eXzvOHgqeZDkXPhg7go,20509
|
|
28
28
|
biopipen/ns/tcgamaf.py,sha256=AFbUJIxiMSvsVY3RcHgjRFuMnNh2DG3Mr5slLNEyz6o,1455
|
|
29
29
|
biopipen/ns/tcr.py,sha256=0PCF8iPZ629z6P3RHoAWEpMWmuDslomTGcMopjqvXmE,88304
|
|
30
30
|
biopipen/ns/vcf.py,sha256=0aKH_YSLy_-JzV-_VZb0EoScv7JKGrDU7BaeWHjDuRo,22699
|
|
31
|
-
biopipen/ns/web.py,sha256=
|
|
31
|
+
biopipen/ns/web.py,sha256=4itJzaju8VBARIyZjDeh5rsVKpafFq_whixnvL8sXes,5368
|
|
32
32
|
biopipen/reports/bam/CNAClinic.svelte,sha256=D4IxQcgDCPQZMbXog-aZP5iJEQTK2N4i0C60e_iXyfs,213
|
|
33
33
|
biopipen/reports/bam/CNVpytor.svelte,sha256=s03SlhbEPd8-_44Dy_cqE8FSErhUdqStLK39te5o7ZE,1364
|
|
34
34
|
biopipen/reports/bam/ControlFREEC.svelte,sha256=OwN96RW0dN-gtQ1zWKbXYZCYkkrOC0RQmP3UG4x7zqU,837
|
|
@@ -76,7 +76,7 @@ biopipen/reports/vcf/TruvariBenchSummary.svelte,sha256=yew8HRN-YahBzX504Micah5BT
|
|
|
76
76
|
biopipen/reports/vcf/TruvariConsistency.svelte,sha256=BBvtxi1EPmGH7j5M5zMOcLEhKWZOlKoXp1lrQGAmz_0,647
|
|
77
77
|
biopipen/scripts/bam/BamMerge.py,sha256=jyaJI0-TulAxaCzvrYjC8PujH_ECNInevnPbh2_XQtU,3477
|
|
78
78
|
biopipen/scripts/bam/BamSplitChroms.py,sha256=b7GS2I4X0dLOhlPg_r9-buoIHTWlq6zHI3Rox94LXR8,4893
|
|
79
|
-
biopipen/scripts/bam/CNAClinic.R,sha256=
|
|
79
|
+
biopipen/scripts/bam/CNAClinic.R,sha256=mQXwtShL54HZXGCPqgPKPrU74_6K_8PqtOtG0mgA-F0,5062
|
|
80
80
|
biopipen/scripts/bam/CNVpytor.py,sha256=hOUli9BDMOoth0or-tjUYC1AP3yNOuxUS6G3Rhcg99s,18000
|
|
81
81
|
biopipen/scripts/bam/ControlFREEC.py,sha256=oX6iWsos-CfiT_ViDBrKeMOOIVdCKWrB-_MqzLgEF9s,3267
|
|
82
82
|
biopipen/scripts/bed/Bed2Vcf.py,sha256=u0mp_2Y4UtEA839zq9UENesH6Gyiwd4sZQW9wFnBVU0,5090
|
|
@@ -84,11 +84,11 @@ biopipen/scripts/bed/BedConsensus.py,sha256=gfAxuIalvCEpS0tiOyAJGPYGgHN0L-hm0K37
|
|
|
84
84
|
biopipen/scripts/bed/BedLiftOver.sh,sha256=Y4gBsz9w4zhE29UmWojO6F4PXMMMWC1uCzjrxa19eOs,256
|
|
85
85
|
biopipen/scripts/bed/BedtoolsIntersect.py,sha256=sFyXPL3kG59xa5eJwHumcQLw3lfabOXsq2-k8IgIqt4,1722
|
|
86
86
|
biopipen/scripts/bed/BedtoolsMerge.py,sha256=7mt307V_wWa_ME0VfuMsVX0HgEwfDcZtY_bDvOPjFiQ,368
|
|
87
|
-
biopipen/scripts/cellranger/CellRangerCount.py,sha256=
|
|
88
|
-
biopipen/scripts/cellranger/CellRangerSummary.R,sha256=
|
|
87
|
+
biopipen/scripts/cellranger/CellRangerCount.py,sha256=b9kkHPpq-bFh-3XCUdxdMKg3SsZmEzZFrG3dbtb4fX8,2875
|
|
88
|
+
biopipen/scripts/cellranger/CellRangerSummary.R,sha256=mVOCIHngEpJIKVD3tMG5UWqS0OQGGjY6yx6ikRcqQU4,11067
|
|
89
89
|
biopipen/scripts/cellranger/CellRangerVdj.py,sha256=ipGkPzkiVy5IpPrYKUK4zgEIvz-aMJOKbMEN-bMStFE,2200
|
|
90
|
-
biopipen/scripts/cnv/AneuploidyScore.R,sha256=
|
|
91
|
-
biopipen/scripts/cnv/AneuploidyScoreSummary.R,sha256=
|
|
90
|
+
biopipen/scripts/cnv/AneuploidyScore.R,sha256=Bpm1cU7VkoinoKKzMuzqFntS8hjdd2IpBUjDiZyM7l4,9163
|
|
91
|
+
biopipen/scripts/cnv/AneuploidyScoreSummary.R,sha256=dSnekzXetM8BDmZPhHOS8WwEeOfszPfqthq6TrZ3aPc,12452
|
|
92
92
|
biopipen/scripts/cnv/TMADScore.R,sha256=IH07REfBO3QB2QNWuwGY6LgAUAOE0lsfP6W0bS67zGs,1530
|
|
93
93
|
biopipen/scripts/cnv/TMADScoreSummary.R,sha256=w58LD5xHnLal9jv53nBUGpQ8eTkAyEk1leCVN2T_ZaM,7109
|
|
94
94
|
biopipen/scripts/cnvkit/CNVkitAccess.py,sha256=UerX66utY8UdlI1mlSVD7E9O0ByLnHzt6G3Urb8mCWE,689
|
|
@@ -104,23 +104,24 @@ biopipen/scripts/cnvkit/CNVkitReference.py,sha256=dO5vzqlgfecYUNJ3I2TvBdL_zKEJyK
|
|
|
104
104
|
biopipen/scripts/cnvkit/CNVkitScatter.py,sha256=7DhTiXPHEHbdXn0VFcDOR-wTP6sks08N94KG7zjo_Is,2728
|
|
105
105
|
biopipen/scripts/cnvkit/CNVkitSegment.py,sha256=q5iGAjY6-yIehPcJpi3hX6EuGre0YgWTPkG_d5LEV48,1629
|
|
106
106
|
biopipen/scripts/cnvkit/guess_baits.py,sha256=7OCMtSMHIJWWZv9qEYVXnB0N4hU_JaGEesKdkr6tvJc,10586
|
|
107
|
-
biopipen/scripts/delim/RowsBinder.R,sha256=
|
|
108
|
-
biopipen/scripts/delim/SampleInfo.R,sha256=
|
|
109
|
-
biopipen/scripts/gene/GeneNameConversion.R,sha256=
|
|
107
|
+
biopipen/scripts/delim/RowsBinder.R,sha256=1QtRiPdUoxR8st1nxBMyVXgpcLfeF-iGsMYHz-66L2s,1465
|
|
108
|
+
biopipen/scripts/delim/SampleInfo.R,sha256=xnpOGHGOMZeD_Ay7PBN9GkqW34sVkTufMIhbxKTw3wU,6727
|
|
109
|
+
biopipen/scripts/gene/GeneNameConversion.R,sha256=Jy2ykhCj9ClSdQUfdYavh2LaBm0nOIXY2kJKmpsqOlI,1818
|
|
110
110
|
biopipen/scripts/gene/GenePromoters.R,sha256=0ukq3-wpN6uq_cyJlQvKDVvy0Dv8cI5Htd9t2xpkEyk,2021
|
|
111
|
-
biopipen/scripts/gsea/Enrichr.R,sha256=
|
|
112
|
-
biopipen/scripts/gsea/FGSEA.R,sha256=
|
|
113
|
-
biopipen/scripts/gsea/GSEA.R,sha256=
|
|
114
|
-
biopipen/scripts/gsea/PreRank.R,sha256=
|
|
111
|
+
biopipen/scripts/gsea/Enrichr.R,sha256=gqN93oE3OeqW_TXZiE_gNH89_o_XFwnOWcHxhTUMvNs,724
|
|
112
|
+
biopipen/scripts/gsea/FGSEA.R,sha256=KpZWM-oskitRaMBDoXQoxa3zcSjZnN-fosKrzEgX28c,1525
|
|
113
|
+
biopipen/scripts/gsea/GSEA.R,sha256=Qo-QUY4B539Hm2FbsS2lsfgAxP_2FrhtPUN1Feq1Jmc,1125
|
|
114
|
+
biopipen/scripts/gsea/PreRank.R,sha256=qrqaf_0ghgpaS3d9XbNVCZS7ZEbZaEoxNzTQ2zkVB_Y,1398
|
|
115
115
|
biopipen/scripts/misc/Config2File.py,sha256=NUio0uOEuZtUBpuByDSItYu9Kwu5mosb4pdPq5-QAmE,440
|
|
116
116
|
biopipen/scripts/misc/Shell.sh,sha256=Rg8_DOfDFeUjZ_1_EVm2lbzyMLqcEv9A3k6SsTcfZZ0,493
|
|
117
117
|
biopipen/scripts/misc/Str2File.py,sha256=99oQNxChxChNJ9vmD77b48cu-r_P_heSpx7A5wi3qTE,212
|
|
118
|
-
biopipen/scripts/plot/Heatmap.R,sha256=
|
|
119
|
-
biopipen/scripts/plot/Manhattan.R,sha256=
|
|
120
|
-
biopipen/scripts/plot/QQPlot.R,sha256=
|
|
121
|
-
biopipen/scripts/plot/ROC.R,sha256=
|
|
122
|
-
biopipen/scripts/plot/
|
|
123
|
-
biopipen/scripts/
|
|
118
|
+
biopipen/scripts/plot/Heatmap.R,sha256=xD_X-0J3kVdKPctTUGeBFXxNgd6N6XbBfBb3giFePJU,2045
|
|
119
|
+
biopipen/scripts/plot/Manhattan.R,sha256=7lJwCX1d0zUpJVhVcmQ35ZtQELzkaDNnBTNHHc3cxW0,4754
|
|
120
|
+
biopipen/scripts/plot/QQPlot.R,sha256=Xil19FJ7jbsxo1yU7dBhhZo2_95Gz6gpTyuv9F0RDNM,4115
|
|
121
|
+
biopipen/scripts/plot/ROC.R,sha256=cjmmYRQycYisqRmlkZE9nbmwfo-04wdJKVmlOsiEFAM,2451
|
|
122
|
+
biopipen/scripts/plot/Scatter.R,sha256=fg4H5rgdr6IePTMAIysiElnZme0vCh1T0wrwH2Q9xkM,2840
|
|
123
|
+
biopipen/scripts/plot/VennDiagram.R,sha256=IQG4OLXdORbmKMWca7dtSDX_RdH8FCrpDfi3eMae7G8,773
|
|
124
|
+
biopipen/scripts/regulatory/MotifAffinityTest.R,sha256=1sR3sWRZbxDeFO290LcpzZglzOLc13SSvibDON96PCg,8852
|
|
124
125
|
biopipen/scripts/regulatory/MotifAffinityTest_AtSNP.R,sha256=SAyTm2-6g5qVJFRrLxEY0QJrLWTkwDi_J_9J7HhtTN8,4438
|
|
125
126
|
biopipen/scripts/regulatory/MotifAffinityTest_MotifBreakR.R,sha256=wCK4tLx1iWh_OwW7ZvLTCjTGWCIfVqw-lYC0-JqIPqg,3338
|
|
126
127
|
biopipen/scripts/regulatory/MotifScan.py,sha256=WtSbs8z08oeTgzjr0LfIDmjbUdknAh1raa_QPQ_NCFg,5336
|
|
@@ -128,99 +129,105 @@ biopipen/scripts/regulatory/atSNP.R,sha256=TXJARbE0rDIzSq6Spacz_HsM_DXdREJ95ZsBg
|
|
|
128
129
|
biopipen/scripts/regulatory/motifBreakR.R,sha256=trzvvTvwc5gSO427wkqx93FecuQxLGa9kNqodKa8S0U,70236
|
|
129
130
|
biopipen/scripts/rnaseq/Simulation-ESCO.R,sha256=68cEHDdJclX8P8Q7ey9yBOfK09M_kxlL6zgYXsEL2Rs,6378
|
|
130
131
|
biopipen/scripts/rnaseq/Simulation-RUVcorr.R,sha256=6C6Ke5RLF0fC2V9WQPoFEdqoDabCnhslZBIyB6zhIxc,1155
|
|
131
|
-
biopipen/scripts/rnaseq/Simulation.R,sha256=
|
|
132
|
-
biopipen/scripts/rnaseq/UnitConversion.R,sha256=
|
|
133
|
-
biopipen/scripts/scrna/AnnData2Seurat.R,sha256=
|
|
134
|
-
biopipen/scripts/scrna/CellTypeAnnotation-celltypist.R,sha256=
|
|
135
|
-
biopipen/scripts/scrna/CellTypeAnnotation-
|
|
136
|
-
biopipen/scripts/scrna/CellTypeAnnotation-
|
|
137
|
-
biopipen/scripts/scrna/CellTypeAnnotation-
|
|
138
|
-
biopipen/scripts/scrna/CellTypeAnnotation-
|
|
139
|
-
biopipen/scripts/scrna/CellTypeAnnotation.R,sha256=
|
|
140
|
-
biopipen/scripts/scrna/
|
|
141
|
-
biopipen/scripts/scrna/
|
|
142
|
-
biopipen/scripts/scrna/
|
|
132
|
+
biopipen/scripts/rnaseq/Simulation.R,sha256=PK9tZS88AcBPStcFalZlMU0KE0gSqFSQvhUoQ-8eg90,871
|
|
133
|
+
biopipen/scripts/rnaseq/UnitConversion.R,sha256=pr1uZuzjapZKwIupE-xtE2HW-OwdVCGBVaHQ_3ipIDw,11377
|
|
134
|
+
biopipen/scripts/scrna/AnnData2Seurat.R,sha256=8VEXHnknoEPWRQ0cj80so6O5FAd1_YlwQ0CP0TwmZVo,2555
|
|
135
|
+
biopipen/scripts/scrna/CellTypeAnnotation-celltypist.R,sha256=2lkIwtSw2A21RCUBdo3BVUdAwsLTIq65NDA-ZR1YWE0,9644
|
|
136
|
+
biopipen/scripts/scrna/CellTypeAnnotation-common.R,sha256=s2exGdJ3WM8mDDeBXGUxuKO1DAGVgRiirHaJD0lPgDw,336
|
|
137
|
+
biopipen/scripts/scrna/CellTypeAnnotation-direct.R,sha256=hmuk3G4IbF66Sv4RmrcrKn8b4J7ZEBD5PzJHa5EKYB8,2125
|
|
138
|
+
biopipen/scripts/scrna/CellTypeAnnotation-hitype.R,sha256=zol-IF0jd3DTzw9I1UVUMYrRNHjeeRGFS_dk4VOi3ec,2015
|
|
139
|
+
biopipen/scripts/scrna/CellTypeAnnotation-sccatch.R,sha256=LTvFzGzP0nmQLkJIxn6H7L8xkP2Z3q52DknXtBkkmcA,1822
|
|
140
|
+
biopipen/scripts/scrna/CellTypeAnnotation-sctype.R,sha256=RhFHy1E4b3Y7pw6feKEhPx5GTbNdaQMDXHzvRlPk34Q,4544
|
|
141
|
+
biopipen/scripts/scrna/CellTypeAnnotation.R,sha256=X_LR0LZ6UQjLA-SCCcQ8CBFZGG_J8CUNx--qwBS8Oh8,773
|
|
142
|
+
biopipen/scripts/scrna/CellsDistribution.R,sha256=QOkQhpendXMmgen99wn0Pl3XKnMJQzvLVb0hPdR49NQ,18980
|
|
143
|
+
biopipen/scripts/scrna/DimPlots.R,sha256=oKhygoWQOCck8OlpnOrNJg0CS2q-r8Com1dfjTvQzvU,1575
|
|
144
|
+
biopipen/scripts/scrna/ExprImputation-alra.R,sha256=xNdQiXgY13-iF16o2KgCJWfPIy4P-lOiO1bl9PfXI4U,864
|
|
143
145
|
biopipen/scripts/scrna/ExprImputation-rmagic.R,sha256=jYIfqZpnvjKJkvItLnemPVtUApHBYQi1_L8rHVbEe1M,735
|
|
144
146
|
biopipen/scripts/scrna/ExprImputation-scimpute.R,sha256=mg40qCUW7-nP5oHPvARq7dmtoahM0GRFWXQpum0BXVk,1082
|
|
145
147
|
biopipen/scripts/scrna/ExprImputation.R,sha256=GcdZJpkDpq88hRQjtLZY5-byp8V43stEFm5T-pQbU6A,319
|
|
146
|
-
biopipen/scripts/scrna/MarkersFinder.R,sha256
|
|
147
|
-
biopipen/scripts/scrna/MetaMarkers.R,sha256=
|
|
148
|
-
biopipen/scripts/scrna/ModuleScoreCalculator.R,sha256=
|
|
149
|
-
biopipen/scripts/scrna/RadarPlots.R,sha256=
|
|
148
|
+
biopipen/scripts/scrna/MarkersFinder.R,sha256=-PyxWYRX1t9VTJYJV7GpPmEIjq65Y8HHFCxy_jwId9g,23021
|
|
149
|
+
biopipen/scripts/scrna/MetaMarkers.R,sha256=opw5RyHpNnYXXnw0HQvFSaptw3IDaTiArwT1EOj_zFg,12114
|
|
150
|
+
biopipen/scripts/scrna/ModuleScoreCalculator.R,sha256=QJ_E6qjRC8GazoopcxZfT5cKxlubf4dK-V7KLBB-yRE,4210
|
|
151
|
+
biopipen/scripts/scrna/RadarPlots.R,sha256=4zs0hAm7yq1Ls62f_29koPLqAKCeKbYiztNM-HR7j3U,13041
|
|
150
152
|
biopipen/scripts/scrna/SCImpute.R,sha256=dSJOHhmJ3x_72LBRXT72dbCti5oiB85CJ-OjWtqONbk,2958
|
|
151
|
-
biopipen/scripts/scrna/ScFGSEA.R,sha256=
|
|
152
|
-
biopipen/scripts/scrna/
|
|
153
|
-
biopipen/scripts/scrna/
|
|
154
|
-
biopipen/scripts/scrna/SeuratClusterStats-
|
|
155
|
-
biopipen/scripts/scrna/SeuratClusterStats-
|
|
156
|
-
biopipen/scripts/scrna/SeuratClusterStats-
|
|
157
|
-
biopipen/scripts/scrna/SeuratClusterStats-
|
|
158
|
-
biopipen/scripts/scrna/SeuratClusterStats.R,sha256=
|
|
159
|
-
biopipen/scripts/scrna/
|
|
153
|
+
biopipen/scripts/scrna/ScFGSEA.R,sha256=MFoJ3i3LFBfsPCxwLPnTh141ZJyrzwnrTuCZIFwvYjU,6318
|
|
154
|
+
biopipen/scripts/scrna/ScSimulation.R,sha256=b2LtL68ucxLoI57tSEDD0hOSbVHUA_x88Y96eK07N-s,1712
|
|
155
|
+
biopipen/scripts/scrna/Seurat2AnnData.R,sha256=G7bcHGffdNlz6Uuy98tQdlahXiPkTDokflp1yTUgcSQ,1578
|
|
156
|
+
biopipen/scripts/scrna/SeuratClusterStats-clustree.R,sha256=FkbniQMHiZGrFAIuS8nUfPVJKFofSL-ZnpxTqIhTa54,3058
|
|
157
|
+
biopipen/scripts/scrna/SeuratClusterStats-dimplots.R,sha256=NEdlJHNXnJZfF7YkefYVWTPO8Z_KAppRAs9rNvB8TXs,2360
|
|
158
|
+
biopipen/scripts/scrna/SeuratClusterStats-features.R,sha256=DeGo7AkBRq0V3Y3JDaifId6rrr5dwawTzcSAJ3W1lxE,15614
|
|
159
|
+
biopipen/scripts/scrna/SeuratClusterStats-hists.R,sha256=PXyDKww8HcloCU8r4IqRwRrm6Ly0cpmpvRcP30xxBa4,5038
|
|
160
|
+
biopipen/scripts/scrna/SeuratClusterStats-ngenes.R,sha256=ihZLB27iEhgICKj-ZTnxTvRAYIgg9rzWr9Oyh1YmOYM,2160
|
|
161
|
+
biopipen/scripts/scrna/SeuratClusterStats-stats.R,sha256=jufs99zxNyUaTCDiWzO0yt76ncc73Yn_SpPa5igbJyA,9120
|
|
162
|
+
biopipen/scripts/scrna/SeuratClusterStats.R,sha256=fywRBVjaFIJBxdgsZxLXEheUZI4l5VUoNIcJnhPIdPQ,2193
|
|
163
|
+
biopipen/scripts/scrna/SeuratClustering-common.R,sha256=JX4Cn2FC6GOcBqaVyGDD3MM5zGpm3TpKJlfo2oOQ4Uk,8195
|
|
164
|
+
biopipen/scripts/scrna/SeuratClustering.R,sha256=0OKRBQ5rFuupK7c03_sSt2HMwMdMnCYFqTvkRXFKchs,1706
|
|
160
165
|
biopipen/scripts/scrna/SeuratFilter.R,sha256=BrYK0MLdaTtQvInMaQsmOt7oH_hlks0M1zykkJtg2lM,509
|
|
161
166
|
biopipen/scripts/scrna/SeuratLoading.R,sha256=ekWKnHIqtQb3kHVQiVymAHXXqiUxs6KKefjZKjaykmk,900
|
|
162
|
-
biopipen/scripts/scrna/SeuratMap2Ref.R,sha256
|
|
163
|
-
biopipen/scripts/scrna/SeuratMetadataMutater.R,sha256=
|
|
164
|
-
biopipen/scripts/scrna/SeuratPreparing.R,sha256=
|
|
167
|
+
biopipen/scripts/scrna/SeuratMap2Ref.R,sha256=-Jyd9O4IkVxZJRlskuaP_tOrI7Q1wwkot-YdmzRbLws,11452
|
|
168
|
+
biopipen/scripts/scrna/SeuratMetadataMutater.R,sha256=PMwG0Xvl_EEVKkicfrIi4arEqpY948PkYLkb59kTAXI,1135
|
|
169
|
+
biopipen/scripts/scrna/SeuratPreparing-common.R,sha256=WuD7lGS17eAUQWSiIdAoV0EIeqS3Tnkkx-7PbP6Q3tc,16279
|
|
170
|
+
biopipen/scripts/scrna/SeuratPreparing-doublet_detection.R,sha256=TNN2lfFjpnnO0rguMsG38JYCP1nFUhcPLJ1LqGj-Sc8,6674
|
|
171
|
+
biopipen/scripts/scrna/SeuratPreparing.R,sha256=CZL6h3mLS5C34ooMa4GcwvSPn4l46Lx7-sRi9FmWvJI,3827
|
|
165
172
|
biopipen/scripts/scrna/SeuratSplit.R,sha256=vdK11V39_Uo_NaOh76QWCtxObGaEr5Ynxqq0hTiSvsU,754
|
|
166
|
-
biopipen/scripts/scrna/SeuratSubClustering.R,sha256=
|
|
173
|
+
biopipen/scripts/scrna/SeuratSubClustering.R,sha256=3MymNPsGUSi2hKlzSxTwhFogOfvqDAagcDR_tMAyt0Y,7593
|
|
167
174
|
biopipen/scripts/scrna/SeuratSubset.R,sha256=yVA11NVE2FSSw-DhxQcJRapns0tNNHdyDYi5epO6SKM,1776
|
|
168
175
|
biopipen/scripts/scrna/SeuratTo10X.R,sha256=1mh1R0Qlo1iHVrpMLUXyLDOA92QKJ4GzTMURTFRqsWg,901
|
|
169
176
|
biopipen/scripts/scrna/Subset10X.R,sha256=T2nJBTwOe12AIKC2FZsMSv6xx3s-67CYZokpz5wshqY,2679
|
|
170
|
-
biopipen/scripts/scrna/TopExpressingGenes.R,sha256=
|
|
177
|
+
biopipen/scripts/scrna/TopExpressingGenes.R,sha256=gYoPjHlhypCmqbED8hYdrt4DKAGkHgSs_TqVzyvVUIQ,7496
|
|
171
178
|
biopipen/scripts/scrna/celltypist-wrapper.py,sha256=f5M8f4rU5nC7l17RS0YVmUPpLLz4D6PIcgWtA77UExM,1722
|
|
172
179
|
biopipen/scripts/scrna/sctype.R,sha256=NaUJkABwF5G1UVm1CCtcMbwLSj94Mo24mbYCKFqo1Bw,6524
|
|
173
|
-
biopipen/scripts/scrna_metabolic_landscape/MetabolicFeatures.R,sha256=
|
|
174
|
-
biopipen/scripts/scrna_metabolic_landscape/MetabolicFeaturesIntraSubset.R,sha256=
|
|
175
|
-
biopipen/scripts/scrna_metabolic_landscape/MetabolicPathwayActivity.R,sha256=
|
|
176
|
-
biopipen/scripts/scrna_metabolic_landscape/MetabolicPathwayHeterogeneity.R,sha256=
|
|
177
|
-
biopipen/scripts/snp/MatrixEQTL.R,sha256=
|
|
180
|
+
biopipen/scripts/scrna_metabolic_landscape/MetabolicFeatures.R,sha256=FN-nIRquw1pgQRviVx3us8ZdigugEjpjq22zIGSCoO4,5264
|
|
181
|
+
biopipen/scripts/scrna_metabolic_landscape/MetabolicFeaturesIntraSubset.R,sha256=Qt2lc-z91A12rxtGtcpM3gKaxXR1xb8innSiCVV_Il0,5544
|
|
182
|
+
biopipen/scripts/scrna_metabolic_landscape/MetabolicPathwayActivity.R,sha256=HwCjNupjF8pudBRjpOVZyfCxVCIprHYW2KNiMNbuP_w,16279
|
|
183
|
+
biopipen/scripts/scrna_metabolic_landscape/MetabolicPathwayHeterogeneity.R,sha256=92Q-KCD8fvxpovrSDr6FUFlS5acsdad8RdmIWvqZZ3s,9894
|
|
184
|
+
biopipen/scripts/snp/MatrixEQTL.R,sha256=nLM3E7Y3XTATcWV0e4c1GSoJc4xFKV49WeNLBTHjf9c,7223
|
|
178
185
|
biopipen/scripts/snp/Plink2GTMat.py,sha256=ypxuT6YEBuuSk9TML9SHhVtA38GlZvB-3tQakJd8YLQ,5052
|
|
179
|
-
biopipen/scripts/snp/PlinkCallRate.R,sha256=
|
|
186
|
+
biopipen/scripts/snp/PlinkCallRate.R,sha256=ATieZsVIhBfs1cOgLnJ-Qwl2f2F9wfaVYQOjsozoRFk,6202
|
|
180
187
|
biopipen/scripts/snp/PlinkFilter.py,sha256=eqC18ne3rPUzIJ_KjqvwQ79MyeMxe0oh4S9PnhfhK1E,3200
|
|
181
|
-
biopipen/scripts/snp/PlinkFreq.R,sha256=
|
|
188
|
+
biopipen/scripts/snp/PlinkFreq.R,sha256=4HJRlu4j_hrdY6taXyCSt0ODrX47T2HjLFf4ZSnD2dU,10647
|
|
182
189
|
biopipen/scripts/snp/PlinkFromVcf.py,sha256=TZaJ117Qp-gbqPX7WK6r7Zw8XHVXbRO6wb0V1NQouxw,2284
|
|
183
|
-
biopipen/scripts/snp/PlinkHWE.R,sha256=
|
|
184
|
-
biopipen/scripts/snp/PlinkHet.R,sha256=
|
|
185
|
-
biopipen/scripts/snp/PlinkIBD.R,sha256=
|
|
190
|
+
biopipen/scripts/snp/PlinkHWE.R,sha256=QpGVDEkNNPvdJOWsB_ouBagNLv3W-ZQ34ur62bb-H1o,2243
|
|
191
|
+
biopipen/scripts/snp/PlinkHet.R,sha256=eqDrRYX2NhsqBcm2Wp0kGKUtTNLtBHXVcLeJMP3QCns,3047
|
|
192
|
+
biopipen/scripts/snp/PlinkIBD.R,sha256=hWW9emQmsS7jxA-J7-WZeAWrJPGl98YneNx-VU4qAuE,5754
|
|
186
193
|
biopipen/scripts/snp/PlinkSimulation.py,sha256=mSSoGGG6sbEPBcUGdHgbebUrg4DiHeyNyc7jLPjV5pY,4169
|
|
187
194
|
biopipen/scripts/snp/PlinkUpdateName.py,sha256=sYyb0ek46wRQfclFfoJEhQyQ-zWsFd2xpFHKw3jbsq4,4055
|
|
188
|
-
biopipen/scripts/stats/ChowTest.R,sha256=
|
|
189
|
-
biopipen/scripts/stats/DiffCoexpr.R,sha256=
|
|
190
|
-
biopipen/scripts/stats/LiquidAssoc.R,sha256=
|
|
191
|
-
biopipen/scripts/stats/Mediation.R,sha256=
|
|
192
|
-
biopipen/scripts/stats/MetaPvalue.R,sha256=
|
|
193
|
-
biopipen/scripts/stats/MetaPvalue1.R,sha256=
|
|
195
|
+
biopipen/scripts/stats/ChowTest.R,sha256=TmoDbFJfEFsd0ZKwMdqTJI0dacxvrtHkJ1FP6FhJpcM,3638
|
|
196
|
+
biopipen/scripts/stats/DiffCoexpr.R,sha256=kxiks9lRs5ssGfj1LdS3jetM_ILLVOXdiTjML6_0mHM,4537
|
|
197
|
+
biopipen/scripts/stats/LiquidAssoc.R,sha256=EBwIl7xf83hlqYs_h9wcdjGLjbmJwmMiR5FM0QGgZfk,3748
|
|
198
|
+
biopipen/scripts/stats/Mediation.R,sha256=3WFeltdENvx0v8P6m7DZbhuCSCMnBKE7B14e8ZLVYdU,3291
|
|
199
|
+
biopipen/scripts/stats/MetaPvalue.R,sha256=s1ewfMwwcSSihsvungyUhSiJF-PDet0wXenAHFJfdTI,4139
|
|
200
|
+
biopipen/scripts/stats/MetaPvalue1.R,sha256=Yearem_XmMaHfZbN_qmDSTNlvVddTSC5Z59zjVe_sno,1848
|
|
194
201
|
biopipen/scripts/tcgamaf/Maf2Vcf.py,sha256=Cxh7fiSNCxWDTfIJqZDOOnaSrw-85S_fH2U-PWY03hc,704
|
|
195
202
|
biopipen/scripts/tcgamaf/MafAddChr.py,sha256=V10HMisl12O3ZfXuRmFNdy5p-3mr43WCvy0GHxSpwfA,494
|
|
196
203
|
biopipen/scripts/tcgamaf/maf2vcf.pl,sha256=hJKcH-NbgWK6fmK7f3qex7ozJJl-PqCNPXqpwfcHwJg,22707
|
|
197
|
-
biopipen/scripts/tcr/Attach2Seurat.R,sha256=
|
|
198
|
-
biopipen/scripts/tcr/CDR3AAPhyschem.R,sha256
|
|
199
|
-
biopipen/scripts/tcr/CloneResidency.R,sha256=
|
|
200
|
-
biopipen/scripts/tcr/CloneSizeQQPlot.R,sha256=
|
|
204
|
+
biopipen/scripts/tcr/Attach2Seurat.R,sha256=0KZaBkuPvqOBXq4ZG3pzIIua5HL-161K5dVXRoCysy4,1366
|
|
205
|
+
biopipen/scripts/tcr/CDR3AAPhyschem.R,sha256=3fWmoTwxVHM3CNnwxdKxy6-7Jul1UltoN4ic39aGTH0,16649
|
|
206
|
+
biopipen/scripts/tcr/CloneResidency.R,sha256=KAcFB39vTYsk8IEj44s8oSFVhKjpAdJ8hkpKxtdWzRA,21540
|
|
207
|
+
biopipen/scripts/tcr/CloneSizeQQPlot.R,sha256=hds1C80Q_W40Ikp-BrFfvh_aBf_V61lz-1YAvkDESyk,4569
|
|
201
208
|
biopipen/scripts/tcr/GIANA/GIANA.py,sha256=0qLhgCWxT8K-4JvORA03CzBPTT5pd4Di5B_DgrHXbFA,47198
|
|
202
209
|
biopipen/scripts/tcr/GIANA/GIANA4.py,sha256=Z7Q3cUr1Pvmy4CFADN0P7i9g1-HbzWROMqk5HvL_F1Q,45762
|
|
203
210
|
biopipen/scripts/tcr/GIANA/Imgt_Human_TRBV.fasta,sha256=XUwDPXJxVH5O9Q0gCL6EILKXEwVyiAZXm4VS2vkPcnQ,15371
|
|
204
211
|
biopipen/scripts/tcr/GIANA/query.py,sha256=5NWSEDNrJomMt48tzLGpRwJTZB0zQxvMVTilyG8osX8,7298
|
|
205
|
-
biopipen/scripts/tcr/Immunarch-basic.R,sha256=
|
|
206
|
-
biopipen/scripts/tcr/Immunarch-clonality.R,sha256=
|
|
207
|
-
biopipen/scripts/tcr/Immunarch-diversity.R,sha256=
|
|
208
|
-
biopipen/scripts/tcr/Immunarch-geneusage.R,sha256=
|
|
209
|
-
biopipen/scripts/tcr/Immunarch-kmer.R,sha256=
|
|
210
|
-
biopipen/scripts/tcr/Immunarch-overlap.R,sha256=
|
|
211
|
-
biopipen/scripts/tcr/Immunarch-spectratyping.R,sha256=
|
|
212
|
-
biopipen/scripts/tcr/Immunarch-tracking.R,sha256=
|
|
213
|
-
biopipen/scripts/tcr/Immunarch-vjjunc.R,sha256=
|
|
214
|
-
biopipen/scripts/tcr/Immunarch.R,sha256=
|
|
212
|
+
biopipen/scripts/tcr/Immunarch-basic.R,sha256=2UAQtGEDKgf5LmPeGlNkkAfQOCtdYpCiBMAn-JHOV4A,3036
|
|
213
|
+
biopipen/scripts/tcr/Immunarch-clonality.R,sha256=NN6WikD-9BKodgKRAbvM2oMLrhn9FUWjqIb69DpHnAk,3744
|
|
214
|
+
biopipen/scripts/tcr/Immunarch-diversity.R,sha256=6T8-IXIMyy4YXgIA4TXJThy91FqgLVsljqxd3PxLDys,27136
|
|
215
|
+
biopipen/scripts/tcr/Immunarch-geneusage.R,sha256=jcuZPxQq19Ics73OT58oGl34jSRghJAgT2JY-L99UgE,6764
|
|
216
|
+
biopipen/scripts/tcr/Immunarch-kmer.R,sha256=autd1IeFEgWpidg7o2tMVT6T8qDeqgIwLF_KyYmBMvU,6171
|
|
217
|
+
biopipen/scripts/tcr/Immunarch-overlap.R,sha256=zqQEgINJpwPP-WnTRA3GxFfKUOFxwmGCt_qIcT_Qndc,7418
|
|
218
|
+
biopipen/scripts/tcr/Immunarch-spectratyping.R,sha256=QFky_PqKYGAI-4-4UY7MoU7HitBImjHqFnxYaW5wQq0,2850
|
|
219
|
+
biopipen/scripts/tcr/Immunarch-tracking.R,sha256=Itqyq2j14vtdJldaSkbx4H389a_UcHpQjD-icXB-WMU,4336
|
|
220
|
+
biopipen/scripts/tcr/Immunarch-vjjunc.R,sha256=ipOU2ShjUQQSojWgBqRpCvG82Cv09qySAq0DiimHygc,4400
|
|
221
|
+
biopipen/scripts/tcr/Immunarch.R,sha256=MvkWbSYeevZAtyjrztWm6Kaw58SZqK_HpPyrL9JYq1k,4804
|
|
215
222
|
biopipen/scripts/tcr/Immunarch2VDJtools.R,sha256=QB9ILGbnsfoWaRANK6ceb14wpSWy8F1V1EdEmfIqiks,706
|
|
216
|
-
biopipen/scripts/tcr/ImmunarchFilter.R,sha256=
|
|
217
|
-
biopipen/scripts/tcr/ImmunarchLoading.R,sha256=
|
|
223
|
+
biopipen/scripts/tcr/ImmunarchFilter.R,sha256=xVuBa38SPQ7qSSynDwvyuYljs1M0yKaIhCQ2eWE3vOc,3995
|
|
224
|
+
biopipen/scripts/tcr/ImmunarchLoading.R,sha256=Vw2oIza3mDJzg9kuo-w5jvwdivk4AtDA6oF1RG1Sva8,5776
|
|
218
225
|
biopipen/scripts/tcr/ImmunarchSplitIdents.R,sha256=FGCeGV0uSmFU91lKkldUAeV4A2m3hHw5X4GNi8ffGzI,1873
|
|
219
|
-
biopipen/scripts/tcr/SampleDiversity.R,sha256=
|
|
220
|
-
biopipen/scripts/tcr/TCRClusterStats.R,sha256=
|
|
221
|
-
biopipen/scripts/tcr/TCRClustering.R,sha256=
|
|
226
|
+
biopipen/scripts/tcr/SampleDiversity.R,sha256=oipN4-2nQZe8bYjI0lZ0SvZ7T8GZ_FWkpkobi1cwmWE,2664
|
|
227
|
+
biopipen/scripts/tcr/TCRClusterStats.R,sha256=QhXgfKSh27VHO901hDizyGYTXMYFJxW22StchQUq3uE,12906
|
|
228
|
+
biopipen/scripts/tcr/TCRClustering.R,sha256=LOdq6NjKcRydGSSoYehILgH4vPCeHIbVpSEYev05578,9278
|
|
222
229
|
biopipen/scripts/tcr/TCRDock.py,sha256=jjzxMWp-hs0LDtA1mVbiWDvUieSO7X-F9yeKGy1LSTM,3026
|
|
223
|
-
biopipen/scripts/tcr/TESSA.R,sha256=
|
|
230
|
+
biopipen/scripts/tcr/TESSA.R,sha256=XFC2P_e_Gm83jG5EjzVIW6KcyG5IieAaK7sXDA3_oZ0,6864
|
|
224
231
|
biopipen/scripts/tcr/TESSA_source/Atchley_factors.csv,sha256=SumqDOqP67P54uM7Cuc5_O_rySTWcGo7eX3psMSPX9s,763
|
|
225
232
|
biopipen/scripts/tcr/TESSA_source/BriseisEncoder.py,sha256=z4_Q_6StymffuUGGjHP1-B3aTsXtamKao5Q1-Kg9has,6831
|
|
226
233
|
biopipen/scripts/tcr/TESSA_source/MCMC_control.R,sha256=93Nnz0IG8KfFnVscZDvmBp1qccZoSoG_jIVpOWBQLHE,2911
|
|
@@ -239,8 +246,8 @@ biopipen/scripts/vcf/BcftoolsFilter.py,sha256=AdQMXFTNLCS5eqYWMNIMbkK8qXJ5j8GYm7
|
|
|
239
246
|
biopipen/scripts/vcf/BcftoolsSort.py,sha256=tU0pTrEIB-7x6iOSfU-KpYY1rEidi6Q4179NntY3cGc,3778
|
|
240
247
|
biopipen/scripts/vcf/BcftoolsView.py,sha256=Sj3KkYPpwQFo5kmZC5MRxItrSE5KVZi0jNYrRFck3Ow,2465
|
|
241
248
|
biopipen/scripts/vcf/TruvariBench.sh,sha256=80yLQ73OzSgsJ4ltzgpcWxYvvX1hFnCG8YSBhhhRQ9Y,765
|
|
242
|
-
biopipen/scripts/vcf/TruvariBenchSummary.R,sha256=
|
|
243
|
-
biopipen/scripts/vcf/TruvariConsistency.R,sha256=
|
|
249
|
+
biopipen/scripts/vcf/TruvariBenchSummary.R,sha256=Q1VCYqOZ-VI8lgXW6Yqmw6NkLH168e7V6eYFbr0W4EE,1516
|
|
250
|
+
biopipen/scripts/vcf/TruvariConsistency.R,sha256=6h20v8qztbl1KZInJwoSK_t5XwqhKMTMzPWNPhoAjlM,2314
|
|
244
251
|
biopipen/scripts/vcf/Vcf2Bed.py,sha256=LzyJ9qW1s5mbfF8maLc77_0rE98KMc2lq1R94_NFbSU,855
|
|
245
252
|
biopipen/scripts/vcf/VcfAnno.py,sha256=FW626rAs_WSU7AHQMKjfkYoByUGh_gVyJM97neGfOMo,802
|
|
246
253
|
biopipen/scripts/vcf/VcfDownSample.sh,sha256=yBlyoA8xyHPkVc1XAs1biNZmN7rDR-CMz8qVh2GGvuk,939
|
|
@@ -254,6 +261,9 @@ biopipen/scripts/vcf/VcfSplitSamples.py,sha256=GraKi7WluzDAvVVGljwd3Yif6MriniF8s
|
|
|
254
261
|
biopipen/scripts/vcf/bcftools_utils.py,sha256=p91rZp0RG6AtbpYA_KuKCfa6T5aNKMq_rK95QPL7mMI,1514
|
|
255
262
|
biopipen/scripts/web/Download.py,sha256=WKC_t5ZEeJoKFyY9XwksHARcMbKmHMcxNEUDLMGJ0Cc,924
|
|
256
263
|
biopipen/scripts/web/DownloadList.py,sha256=cZvdi3LVzlATiTvAXe0uuDDXGqB5jcR2zHrMLCEb2U8,1130
|
|
264
|
+
biopipen/scripts/web/GCloudStorageDownloadBucket.py,sha256=DBPfQaIpm-W7-uBHZjwOqP_FaWLW9aIFooVnmfvTAa4,2657
|
|
265
|
+
biopipen/scripts/web/GCloudStorageDownloadFile.py,sha256=tZIZpDvWQyEhY4qIlRDF1NYRT-Ums8cIgElp00F0uz4,823
|
|
266
|
+
biopipen/scripts/web/gcloud_common.py,sha256=fLhW8eiBUSjn9scQzu3IQC_IFvFO3r_K3f8fTqxWEBw,1238
|
|
257
267
|
biopipen/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
258
268
|
biopipen/utils/caching.R,sha256=qANQqH8p-VpvD8V4VSoqSfp0TFr4esujC7x3OFZsJMw,1687
|
|
259
269
|
biopipen/utils/common_docstrs.py,sha256=Ow-g-yS5P7DEO37cP1X-xioRbYWygfQHxIuLIaDdrjs,6288
|
|
@@ -269,7 +279,7 @@ biopipen/utils/reference.py,sha256=oi5evicLwHxF0KAIPNZohBeHJLJQNWFJH0cr2y5pgcg,5
|
|
|
269
279
|
biopipen/utils/rnaseq.R,sha256=Ro2B2dG-Z2oVaT5tkwp9RHBz4dp_RF-JcizlM5GYXFs,1298
|
|
270
280
|
biopipen/utils/single_cell.R,sha256=pJjYP8bIZpNAtTQ32rOXhZxaM1Y-6D-xUcK3pql9tbk,4316
|
|
271
281
|
biopipen/utils/vcf.py,sha256=ajXs0M_QghEctlvUlSRjWQIABVF02wPdYd-0LP4mIsU,9377
|
|
272
|
-
biopipen-0.
|
|
273
|
-
biopipen-0.
|
|
274
|
-
biopipen-0.
|
|
275
|
-
biopipen-0.
|
|
282
|
+
biopipen-0.31.0.dist-info/METADATA,sha256=OtaZr2FTKCeaK9H-yBmssBT6848_F1j1wa2e8D3wraE,882
|
|
283
|
+
biopipen-0.31.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
284
|
+
biopipen-0.31.0.dist-info/entry_points.txt,sha256=69SbeMaF47Z2DS40yo-qDyoBKmMmumrNnsjEZMOioCE,625
|
|
285
|
+
biopipen-0.31.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|