biopipen 0.29.0__py3-none-any.whl → 0.29.2__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/ns/plot.py +66 -8
- biopipen/ns/{regulation.py → regulatory.py} +3 -3
- biopipen/ns/scrna.py +16 -2
- biopipen/ns/stats.py +93 -1
- biopipen/scripts/delim/SampleInfo.R +10 -5
- biopipen/scripts/plot/Manhattan.R +6 -0
- biopipen/scripts/plot/QQPlot.R +100 -16
- biopipen/scripts/{regulation → regulatory}/MotifAffinityTest.R +3 -3
- biopipen/scripts/{regulation → regulatory}/MotifScan.py +1 -1
- biopipen/scripts/scrna/MarkersFinder.R +29 -18
- biopipen/scripts/scrna/MetaMarkers.R +20 -2
- biopipen/scripts/scrna/SeuratClusterStats-features.R +3 -1
- biopipen/scripts/scrna/SeuratClustering.R +8 -0
- biopipen/scripts/scrna/SeuratPreparing.R +252 -122
- biopipen/scripts/scrna_metabolic_landscape/MetabolicFeatures.R +5 -2
- biopipen/scripts/scrna_metabolic_landscape/MetabolicFeaturesIntraSubset.R +5 -1
- biopipen/scripts/snp/MatrixEQTL.R +2 -2
- biopipen/scripts/snp/PlinkIBD.R +3 -0
- biopipen/scripts/stats/Mediation.R +106 -0
- {biopipen-0.29.0.dist-info → biopipen-0.29.2.dist-info}/METADATA +1 -1
- {biopipen-0.29.0.dist-info → biopipen-0.29.2.dist-info}/RECORD +28 -27
- {biopipen-0.29.0.dist-info → biopipen-0.29.2.dist-info}/entry_points.txt +1 -1
- /biopipen/scripts/{regulation → regulatory}/MotifAffinityTest_AtSNP.R +0 -0
- /biopipen/scripts/{regulation → regulatory}/MotifAffinityTest_MotifBreakR.R +0 -0
- /biopipen/scripts/{regulation → regulatory}/atSNP.R +0 -0
- /biopipen/scripts/{regulation → regulatory}/motifBreakR.R +0 -0
- {biopipen-0.29.0.dist-info → biopipen-0.29.2.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
source("{{biopipen_dir}}/utils/misc.R")
|
|
2
|
+
|
|
3
|
+
library(rlang)
|
|
4
|
+
library(parallel)
|
|
5
|
+
library(mediation)
|
|
6
|
+
|
|
7
|
+
infile <- {{in.infile | r}}
|
|
8
|
+
fmlfile <- {{in.fmlfile | r}}
|
|
9
|
+
outfile <- {{out.outfile | r}}
|
|
10
|
+
|
|
11
|
+
ncores <- {{envs.ncores | r}}
|
|
12
|
+
sims <- {{envs.sims | r}}
|
|
13
|
+
args <- {{envs.args | r}}
|
|
14
|
+
padj <- {{envs.padj | r}}
|
|
15
|
+
cases <- {{envs.cases | r}}
|
|
16
|
+
transpose_input <- {{envs.transpose_input | r}}
|
|
17
|
+
|
|
18
|
+
set.seed(123)
|
|
19
|
+
|
|
20
|
+
log_info("Reading input file ...")
|
|
21
|
+
indata <- read.table(infile, header = TRUE, sep = "\t", row.names = NULL, check.names = FALSE)
|
|
22
|
+
if (transpose_input) { indata <- t(indata) }
|
|
23
|
+
|
|
24
|
+
log_info("Reading formula file/cases ...")
|
|
25
|
+
if (!is.null(fmlfile)) {
|
|
26
|
+
if (!is.null(cases) && length(cases) > 0) {
|
|
27
|
+
log_warn("envs.cases ignored as in.fmlfile is provided")
|
|
28
|
+
}
|
|
29
|
+
fmldata <- read.table(fmlfile, header = TRUE, sep = "\t", row.names = NULL)
|
|
30
|
+
# Case M Y X Cov Model_M Model_Y
|
|
31
|
+
cases <- split(fmldata, fmldata$Case)
|
|
32
|
+
} else if (is.null(cases) || length(cases) == 0) {
|
|
33
|
+
stop("Either envs.cases or in.fmlfile must be provided")
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
args <- args %||% list()
|
|
37
|
+
|
|
38
|
+
medanalysis <- function(i, total) {
|
|
39
|
+
casename <- names(cases)[i]
|
|
40
|
+
case <- cases[[casename]]
|
|
41
|
+
if (total < 50) {
|
|
42
|
+
log_info("- Case: ", casename)
|
|
43
|
+
} else if (total < 500) {
|
|
44
|
+
if (i %% 10 == 0) {
|
|
45
|
+
log_info("- Processing case {i}/{total} ...")
|
|
46
|
+
}
|
|
47
|
+
} else {
|
|
48
|
+
if (i %% 100 == 0) {
|
|
49
|
+
log_info("- Processing case {i}/{total} ...")
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
M <- case$M
|
|
53
|
+
Y <- case$Y
|
|
54
|
+
X <- case$X
|
|
55
|
+
covs <- case$Cov
|
|
56
|
+
modelm <- match.fun(case$Model_M)
|
|
57
|
+
modely <- match.fun(case$Model_Y)
|
|
58
|
+
fmlm <- as.formula(sprintf("%s ~ %s", bQuote(M), bQuote(X)))
|
|
59
|
+
fmly <- as.formula(sprintf("%s ~ %s + %s", bQuote(Y), bQuote(M), bQuote(X)))
|
|
60
|
+
if (!is.null(covs) && length(covs) == 1) {
|
|
61
|
+
covs <- trimws(strsplit(covs, ",")[[1]])
|
|
62
|
+
}
|
|
63
|
+
if (!is.null(covs)) {
|
|
64
|
+
cov_fml <- as.formula(sprintf("~ . + %s", paste(bQuote(covs), collapse = " + ")))
|
|
65
|
+
fmlm <- update.formula(fmlm, cov_fml)
|
|
66
|
+
fmly <- update.formula(fmly, cov_fml)
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
margs <- args
|
|
70
|
+
args$sims <- sims
|
|
71
|
+
args$model.m <- modelm(fmlm, data = indata)
|
|
72
|
+
args$model.y <- modely(fmly, data = indata)
|
|
73
|
+
args$treat <- X
|
|
74
|
+
args$mediator <- M
|
|
75
|
+
args$outcome <- Y
|
|
76
|
+
if (!is.null(covs)) {
|
|
77
|
+
args$covariates <- indata[, covs, drop = FALSE]
|
|
78
|
+
}
|
|
79
|
+
med <- do_call(mediate, args)
|
|
80
|
+
if (is.na(med$d1.p) || is.na(med$n1)) {
|
|
81
|
+
NULL
|
|
82
|
+
} else {
|
|
83
|
+
data.frame(
|
|
84
|
+
Case = casename,
|
|
85
|
+
M = M,
|
|
86
|
+
X = X,
|
|
87
|
+
Y = Y,
|
|
88
|
+
ACME = med$d1,
|
|
89
|
+
ACME95CI1 = med$d1.ci[1],
|
|
90
|
+
ACME95CI2 = med$d1.ci[2],
|
|
91
|
+
TotalEffect = med$tau.coef,
|
|
92
|
+
ADE = med$z1,
|
|
93
|
+
PropMediated = med$n1,
|
|
94
|
+
Pval = med$d1.p
|
|
95
|
+
)
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
total <- length(cases)
|
|
100
|
+
out <- do_call(rbind, mclapply(1:total, medanalysis, total = total, mc.cores = ncores))
|
|
101
|
+
|
|
102
|
+
if (padj != "none") {
|
|
103
|
+
out$Padj <- p.adjust(out$Pval, method = padj)
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
write.table(out, file = outfile, sep = "\t", quote = FALSE, row.names = FALSE)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
biopipen/__init__.py,sha256=
|
|
1
|
+
biopipen/__init__.py,sha256=f5--I8wu8KDVcUAUM1dKof58bj59kV6atq2ccm3sqPs,23
|
|
2
2
|
biopipen/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
biopipen/core/config.py,sha256=edK5xnDhM8j27srDzsxubi934NMrglLoKrdcC8qsEPk,1069
|
|
4
4
|
biopipen/core/config.toml,sha256=IL31RfhuF-6V46lvLs1F-Z4SPmUuTvWzk5PN37Xjrqc,1907
|
|
@@ -18,13 +18,13 @@ 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=
|
|
22
|
-
biopipen/ns/
|
|
21
|
+
biopipen/ns/plot.py,sha256=r0n10N9iipZgbDZzkJVq4-9drMtinGK0ntBa3Lk2JFc,15771
|
|
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=0MG0uyyrlSfjS-Lp2Abm_4f4LnLwyjUd6mIOtaQv36Q,108085
|
|
25
25
|
biopipen/ns/scrna_metabolic_landscape.py,sha256=6AhaynGG3lNRi96N2tReVT46BJMuEwooSSd2irBoN80,28347
|
|
26
26
|
biopipen/ns/snp.py,sha256=-Jx5Hsv_7KV7TqLU0nHCaPkMEN0CFdi4tNVlyq0rUZ4,27259
|
|
27
|
-
biopipen/ns/stats.py,sha256=
|
|
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
|
|
@@ -105,7 +105,7 @@ biopipen/scripts/cnvkit/CNVkitScatter.py,sha256=7DhTiXPHEHbdXn0VFcDOR-wTP6sks08N
|
|
|
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
107
|
biopipen/scripts/delim/RowsBinder.R,sha256=yp960u7Ui_jFCL8WDvODa-0vhJvyLo64ll35PzXYUbI,1444
|
|
108
|
-
biopipen/scripts/delim/SampleInfo.R,sha256=
|
|
108
|
+
biopipen/scripts/delim/SampleInfo.R,sha256=5NWYMIgeXjIwmIF-CTifUVyMLiy6RY_6xOMk2iG4v4E,6684
|
|
109
109
|
biopipen/scripts/gene/GeneNameConversion.R,sha256=uAnueB1poicYpQHjUnl4ZBFn3sAWzP9HzmBC7zjlehI,1776
|
|
110
110
|
biopipen/scripts/gene/GenePromoters.R,sha256=0ukq3-wpN6uq_cyJlQvKDVvy0Dv8cI5Htd9t2xpkEyk,2021
|
|
111
111
|
biopipen/scripts/gsea/Enrichr.R,sha256=tr4vInlVIeiGXumh22ARuTQmy0-Qq869RiX7d7ERqCg,661
|
|
@@ -116,16 +116,16 @@ biopipen/scripts/misc/Config2File.py,sha256=NUio0uOEuZtUBpuByDSItYu9Kwu5mosb4pdP
|
|
|
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
118
|
biopipen/scripts/plot/Heatmap.R,sha256=4v_oRME8ZiwczIlBIp-OP_YPWLAvBKzbHiwNBCZ0Xog,1982
|
|
119
|
-
biopipen/scripts/plot/Manhattan.R,sha256=
|
|
120
|
-
biopipen/scripts/plot/QQPlot.R,sha256=
|
|
119
|
+
biopipen/scripts/plot/Manhattan.R,sha256=QJhJ80d0RycRt26zJXDqkuCh88YW5IkD-8Di2lGSeu8,4732
|
|
120
|
+
biopipen/scripts/plot/QQPlot.R,sha256=HHGBEJKwHz0ZsYdmAebwov9gQuf6taaLTRkeO7KJ8Lw,4094
|
|
121
121
|
biopipen/scripts/plot/ROC.R,sha256=Cr-mHQx6c748fQYkOWO2xIKWwiVAUxGuxn6lYEhNH78,2430
|
|
122
122
|
biopipen/scripts/plot/VennDiagram.R,sha256=GVc-kyHqnXrbXZvy-evcxI1XGtlLSChBiVnMjPywNMA,731
|
|
123
|
-
biopipen/scripts/
|
|
124
|
-
biopipen/scripts/
|
|
125
|
-
biopipen/scripts/
|
|
126
|
-
biopipen/scripts/
|
|
127
|
-
biopipen/scripts/
|
|
128
|
-
biopipen/scripts/
|
|
123
|
+
biopipen/scripts/regulatory/MotifAffinityTest.R,sha256=eeBauaAfyEcOIznoXRRWXeRUvAd0waU0R5CCzwQ8kgs,8969
|
|
124
|
+
biopipen/scripts/regulatory/MotifAffinityTest_AtSNP.R,sha256=SAyTm2-6g5qVJFRrLxEY0QJrLWTkwDi_J_9J7HhtTN8,4438
|
|
125
|
+
biopipen/scripts/regulatory/MotifAffinityTest_MotifBreakR.R,sha256=wCK4tLx1iWh_OwW7ZvLTCjTGWCIfVqw-lYC0-JqIPqg,3338
|
|
126
|
+
biopipen/scripts/regulatory/MotifScan.py,sha256=WtSbs8z08oeTgzjr0LfIDmjbUdknAh1raa_QPQ_NCFg,5336
|
|
127
|
+
biopipen/scripts/regulatory/atSNP.R,sha256=TXJARbE0rDIzSq6Spacz_HsM_DXdREJ95ZsBg26trgw,1288
|
|
128
|
+
biopipen/scripts/regulatory/motifBreakR.R,sha256=trzvvTvwc5gSO427wkqx93FecuQxLGa9kNqodKa8S0U,70236
|
|
129
129
|
biopipen/scripts/rnaseq/Simulation-ESCO.R,sha256=68cEHDdJclX8P8Q7ey9yBOfK09M_kxlL6zgYXsEL2Rs,6378
|
|
130
130
|
biopipen/scripts/rnaseq/Simulation-RUVcorr.R,sha256=6C6Ke5RLF0fC2V9WQPoFEdqoDabCnhslZBIyB6zhIxc,1155
|
|
131
131
|
biopipen/scripts/rnaseq/Simulation.R,sha256=PNEDUwEEOMGwgNyx5VPDAbzSLS74gqAxKenv5Uw_8zo,850
|
|
@@ -143,25 +143,25 @@ biopipen/scripts/scrna/ExprImputation-alra.R,sha256=w3W1txJcdWg52-SETY2Z0lO7maDN
|
|
|
143
143
|
biopipen/scripts/scrna/ExprImputation-rmagic.R,sha256=jYIfqZpnvjKJkvItLnemPVtUApHBYQi1_L8rHVbEe1M,735
|
|
144
144
|
biopipen/scripts/scrna/ExprImputation-scimpute.R,sha256=mg40qCUW7-nP5oHPvARq7dmtoahM0GRFWXQpum0BXVk,1082
|
|
145
145
|
biopipen/scripts/scrna/ExprImputation.R,sha256=GcdZJpkDpq88hRQjtLZY5-byp8V43stEFm5T-pQbU6A,319
|
|
146
|
-
biopipen/scripts/scrna/MarkersFinder.R,sha256
|
|
147
|
-
biopipen/scripts/scrna/MetaMarkers.R,sha256=
|
|
146
|
+
biopipen/scripts/scrna/MarkersFinder.R,sha256=6CjciBZsVUIjsEe_xpO0s5K-uy2kKa1c76Ks_lndX-g,22950
|
|
147
|
+
biopipen/scripts/scrna/MetaMarkers.R,sha256=xb1dt4N-ra26l6pWmL4Ieix0MB6QOU7CDcxufMZE3Xk,12064
|
|
148
148
|
biopipen/scripts/scrna/ModuleScoreCalculator.R,sha256=JSHd-_-KiFqW8avCGxgU4T-C5BtDr2u0kwIvEu2lFIg,4188
|
|
149
149
|
biopipen/scripts/scrna/RadarPlots.R,sha256=TGPUTUcHOHgd9rsNtLYT-N6WHiFNDBZsiIoqkyAJh0A,13020
|
|
150
150
|
biopipen/scripts/scrna/SCImpute.R,sha256=dSJOHhmJ3x_72LBRXT72dbCti5oiB85CJ-OjWtqONbk,2958
|
|
151
151
|
biopipen/scripts/scrna/ScFGSEA.R,sha256=2UCTCIydVkPGvn7WP-_fcE7857iKKDxY56-j-ruyO8o,6254
|
|
152
152
|
biopipen/scripts/scrna/Seurat2AnnData.R,sha256=qz4u-B5J3GMwttubnNnByJXreziFbrP5Mak0L0q7eG0,1557
|
|
153
153
|
biopipen/scripts/scrna/SeuratClusterStats-dimplots.R,sha256=gViDgQ8NorYD64iK0FgcODOrDOw0tExZmhuPRuLNp4g,2354
|
|
154
|
-
biopipen/scripts/scrna/SeuratClusterStats-features.R,sha256=
|
|
154
|
+
biopipen/scripts/scrna/SeuratClusterStats-features.R,sha256=Cg7fVdDnapS98ak9z2Ha77CLqBkNJ4IYX1q1ssfGNeU,15599
|
|
155
155
|
biopipen/scripts/scrna/SeuratClusterStats-hists.R,sha256=YhuD-GePjJPSkR0iLRgV_hiGHD_bnOIKp-LB6GCwquo,5037
|
|
156
156
|
biopipen/scripts/scrna/SeuratClusterStats-ngenes.R,sha256=GVKIXFNS_syCuSN8oxoBkjxxAeI5LdSxh-qLVkUsbDA,2146
|
|
157
157
|
biopipen/scripts/scrna/SeuratClusterStats-stats.R,sha256=bBbvNCvV6dZLg9zvhh2nR48_53md5A5UEqrPXD00MZU,9263
|
|
158
158
|
biopipen/scripts/scrna/SeuratClusterStats.R,sha256=ouWoj7Q644uG3MUlT23AES8f74g38-jPtPhINSvoUas,1267
|
|
159
|
-
biopipen/scripts/scrna/SeuratClustering.R,sha256=
|
|
159
|
+
biopipen/scripts/scrna/SeuratClustering.R,sha256=VOpJfICDrEIh9ATss8RJYOvsoLJLxaidg4F0aqOYfp0,7893
|
|
160
160
|
biopipen/scripts/scrna/SeuratFilter.R,sha256=BrYK0MLdaTtQvInMaQsmOt7oH_hlks0M1zykkJtg2lM,509
|
|
161
161
|
biopipen/scripts/scrna/SeuratLoading.R,sha256=ekWKnHIqtQb3kHVQiVymAHXXqiUxs6KKefjZKjaykmk,900
|
|
162
162
|
biopipen/scripts/scrna/SeuratMap2Ref.R,sha256=qnFkOCudqC-j5uAszBssWM9Xg_vO3H9_Hj0n5wdOmBc,9757
|
|
163
163
|
biopipen/scripts/scrna/SeuratMetadataMutater.R,sha256=Pp4GsF3hZ6ZC2vroC3LSBmVa4B1p2L3hbh981yaAIeQ,1093
|
|
164
|
-
biopipen/scripts/scrna/SeuratPreparing.R,sha256=
|
|
164
|
+
biopipen/scripts/scrna/SeuratPreparing.R,sha256=nC7wPwS-s0ZGVV1vV50PvFewTirmRsiozT1C07pGHpE,22532
|
|
165
165
|
biopipen/scripts/scrna/SeuratSplit.R,sha256=vdK11V39_Uo_NaOh76QWCtxObGaEr5Ynxqq0hTiSvsU,754
|
|
166
166
|
biopipen/scripts/scrna/SeuratSubClustering.R,sha256=ooEQhUneYvSiRcwlqC9Mc8WE0g5pLEtKtQWYrKN3cck,8001
|
|
167
167
|
biopipen/scripts/scrna/SeuratSubset.R,sha256=yVA11NVE2FSSw-DhxQcJRapns0tNNHdyDYi5epO6SKM,1776
|
|
@@ -170,11 +170,11 @@ biopipen/scripts/scrna/Subset10X.R,sha256=T2nJBTwOe12AIKC2FZsMSv6xx3s-67CYZokpz5
|
|
|
170
170
|
biopipen/scripts/scrna/TopExpressingGenes.R,sha256=kXMCYHVytgVgO_Uq66fKKFCFV2PPXE8VREy_0yYPLpU,7475
|
|
171
171
|
biopipen/scripts/scrna/celltypist-wrapper.py,sha256=f5M8f4rU5nC7l17RS0YVmUPpLLz4D6PIcgWtA77UExM,1722
|
|
172
172
|
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=
|
|
173
|
+
biopipen/scripts/scrna_metabolic_landscape/MetabolicFeatures.R,sha256=EFUhI65cPEktZnZquzfVoJcBd_pNcT5jag5XOWHj-Os,5222
|
|
174
|
+
biopipen/scripts/scrna_metabolic_landscape/MetabolicFeaturesIntraSubset.R,sha256=jeTuhWEn2ajL1ZmGpCBy7cBSd1d387P-YetnB6qjhxc,5502
|
|
175
175
|
biopipen/scripts/scrna_metabolic_landscape/MetabolicPathwayActivity.R,sha256=95DLX1Rz0tobOuDZ8V9YdGgO0KiNthhccoeeOK21tno,16216
|
|
176
176
|
biopipen/scripts/scrna_metabolic_landscape/MetabolicPathwayHeterogeneity.R,sha256=rQ9iwGh9FNRZlJJzM4QItdyXmebfzLAq05ZAjb1kGUw,9831
|
|
177
|
-
biopipen/scripts/snp/MatrixEQTL.R,sha256=
|
|
177
|
+
biopipen/scripts/snp/MatrixEQTL.R,sha256=QPnUW7Rk5UrAQLiBg9FdCItUC26RDBHf7UrfL66dMto,7202
|
|
178
178
|
biopipen/scripts/snp/Plink2GTMat.py,sha256=ypxuT6YEBuuSk9TML9SHhVtA38GlZvB-3tQakJd8YLQ,5052
|
|
179
179
|
biopipen/scripts/snp/PlinkCallRate.R,sha256=lkx93TyZjnvOWuq7W5zvdIlYmTC4n4ys52VymA7PvPM,6160
|
|
180
180
|
biopipen/scripts/snp/PlinkFilter.py,sha256=eqC18ne3rPUzIJ_KjqvwQ79MyeMxe0oh4S9PnhfhK1E,3200
|
|
@@ -182,12 +182,13 @@ biopipen/scripts/snp/PlinkFreq.R,sha256=Y8R-jE4upWe6B4yf7G9BCjEyv6HXItHOaUQzVInX
|
|
|
182
182
|
biopipen/scripts/snp/PlinkFromVcf.py,sha256=TZaJ117Qp-gbqPX7WK6r7Zw8XHVXbRO6wb0V1NQouxw,2284
|
|
183
183
|
biopipen/scripts/snp/PlinkHWE.R,sha256=Ncs4ctTDCnfGxs5HbyNxsNuq3Cn_Dwo1iFKdbj6GJSc,2201
|
|
184
184
|
biopipen/scripts/snp/PlinkHet.R,sha256=r35hzA3A5lrqJN1kWxd2bYucTZd1eNd_vDjqhprur34,3005
|
|
185
|
-
biopipen/scripts/snp/PlinkIBD.R,sha256=
|
|
185
|
+
biopipen/scripts/snp/PlinkIBD.R,sha256=5y2C6UnMyIGrdiSpHYd63r8vGbAiMTLI4XDA82mur7Y,5712
|
|
186
186
|
biopipen/scripts/snp/PlinkSimulation.py,sha256=mSSoGGG6sbEPBcUGdHgbebUrg4DiHeyNyc7jLPjV5pY,4169
|
|
187
187
|
biopipen/scripts/snp/PlinkUpdateName.py,sha256=sYyb0ek46wRQfclFfoJEhQyQ-zWsFd2xpFHKw3jbsq4,4055
|
|
188
188
|
biopipen/scripts/stats/ChowTest.R,sha256=4p7NULmfOZSfeBSQ04els0h3cXOK5yeCJJ4-gEBPOGk,3617
|
|
189
189
|
biopipen/scripts/stats/DiffCoexpr.R,sha256=5hQDV2_7bKdKUsOGMZUa0GS5rc7kFspxonNyFEPmtbc,4516
|
|
190
190
|
biopipen/scripts/stats/LiquidAssoc.R,sha256=s-XJbFoOfH4eWSkxbbOSHZ1x16lY0Sdod_V1KvSkM8k,3727
|
|
191
|
+
biopipen/scripts/stats/Mediation.R,sha256=jf7ORVbbd9wtEOEJRLowKexQCkOhFmc4v5kkPsNqWpY,3160
|
|
191
192
|
biopipen/scripts/stats/MetaPvalue.R,sha256=fnqayZeHd61cP9PxZZAebg5lE7JQgFG5MElCct43S1M,4012
|
|
192
193
|
biopipen/scripts/stats/MetaPvalue1.R,sha256=falhaOeoa8E7ZbddXfGsSdim5P7eQvA7RFGD7XSrBUk,1733
|
|
193
194
|
biopipen/scripts/tcgamaf/Maf2Vcf.py,sha256=Cxh7fiSNCxWDTfIJqZDOOnaSrw-85S_fH2U-PWY03hc,704
|
|
@@ -268,7 +269,7 @@ biopipen/utils/reference.py,sha256=oi5evicLwHxF0KAIPNZohBeHJLJQNWFJH0cr2y5pgcg,5
|
|
|
268
269
|
biopipen/utils/rnaseq.R,sha256=Ro2B2dG-Z2oVaT5tkwp9RHBz4dp_RF-JcizlM5GYXFs,1298
|
|
269
270
|
biopipen/utils/single_cell.R,sha256=pJjYP8bIZpNAtTQ32rOXhZxaM1Y-6D-xUcK3pql9tbk,4316
|
|
270
271
|
biopipen/utils/vcf.py,sha256=ajXs0M_QghEctlvUlSRjWQIABVF02wPdYd-0LP4mIsU,9377
|
|
271
|
-
biopipen-0.29.
|
|
272
|
-
biopipen-0.29.
|
|
273
|
-
biopipen-0.29.
|
|
274
|
-
biopipen-0.29.
|
|
272
|
+
biopipen-0.29.2.dist-info/METADATA,sha256=9tT8IW-AiQXwRLIzbARle_vaYVL7h5f_wyEwq8ZAHA8,882
|
|
273
|
+
biopipen-0.29.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
274
|
+
biopipen-0.29.2.dist-info/entry_points.txt,sha256=69SbeMaF47Z2DS40yo-qDyoBKmMmumrNnsjEZMOioCE,625
|
|
275
|
+
biopipen-0.29.2.dist-info/RECORD,,
|
|
@@ -11,7 +11,7 @@ gene=biopipen.ns.gene
|
|
|
11
11
|
gsea=biopipen.ns.gsea
|
|
12
12
|
misc=biopipen.ns.misc
|
|
13
13
|
plot=biopipen.ns.plot
|
|
14
|
-
|
|
14
|
+
regulatory=biopipen.ns.regulatory
|
|
15
15
|
rnaseq=biopipen.ns.rnaseq
|
|
16
16
|
scrna=biopipen.ns.scrna
|
|
17
17
|
scrna_metabolic_landscape=biopipen.ns.scrna_metabolic_landscape
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|