Skip to content

Commit be74868

Browse files
committed
Merge branch 'scrnaseq-patch'
2 parents 64e2c63 + 70cd4a1 commit be74868

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

appyters/scRNA_seq/appyter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://raw.githubusercontent.com/MaayanLab/appyter-catalog/main/schema/appyter-validator.json",
33
"name": "scRNA_seq",
44
"title": "Single cell RNA-seq analysis pipeline",
5-
"version": "0.2.7",
5+
"version": "0.2.8",
66
"description": "scRNA-seq analysis pipeline enables users to analyze and visualize scRNA-seq datasets with state-of-the-art algorithms and visualization methods.",
77
"image": "screenshot.png",
88
"authors": [

appyters/scRNA_seq/setup.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
install.packages("R.utils")
2+
install.packages("RCurl")
13
install.packages("dplyr")
24
install.packages("tibble")
35
install.packages("Matrix")
@@ -10,9 +12,9 @@ install.packages("statmod")
1012
if (!requireNamespace("BiocManager", quietly = TRUE))
1113
install.packages("BiocManager")
1214

15+
BiocManager::install("DESeq2")
1316
BiocManager::install("limma")
1417
BiocManager::install("edgeR")
15-
BiocManager::install("DESeq2")
1618

1719
install.packages("https://cran.r-project.org/src/contrib/Archive/XML/XML_3.98-1.20.tar.gz")
1820

appyters/scRNA_seq/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1170,6 +1170,7 @@ def plot_protrack(libraries, tmp_adata, bool_plot_rug=True, bool_plot_dendrogram
11701170
adata_heatmap.obs = adata_heatmap.obs.T.drop_duplicates().T
11711171
new_library_filename = extract_library_name(library_filename)
11721172
library_name = library_filename+"_0"
1173+
if library_name not in adata_heatmap.obs.columns: continue
11731174
clean_library_filename = {library_name: new_library_filename}
11741175
new_cols = list()
11751176
for col in adata_heatmap.obs.columns:

0 commit comments

Comments
 (0)