Skip to content

Commit

Permalink
Update README and annotation, and fix params according to their datat…
Browse files Browse the repository at this point in the history
…ypes
  • Loading branch information
pavanvidem committed Jan 10, 2025
1 parent eb445af commit da4ecea
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
class: File
location: https://zenodo.org/record/3581213/files/matrix.mtx
filetype: mtx
Minimum number of cells expressed: '3'
Minimum number of cells expressed: 3
Input is from Cell Ranger v2 or earlier versions: true
Mitochondrial genes start with pattern: MT-
Minimum number of genes expressed: '200'
Maximum number of genes expressed: '2500'
Number of neighbours for computing neighborhood graph: '10'
Number of PCs to use for computing neighborhood graph: '10'
Louvain resolution: '0.45'
Mitochondrial genes start with pattern: 'MT-'
Minimum number of genes expressed: 200
Maximum number of genes expressed: 2500
Number of neighbours for computing neighborhood graph: 10
Number of PCs to use for computing neighborhood graph: 10
Louvain resolution: 0.45
Manually annotate celltypes?: true
Annotate louvain clusters with these cell types: CD4+ T, CD14+, B, CD8+ T, FCGR3A+,
NK, Dendritic, Megakaryocytes
Annotate louvain clusters with these cell types: 'CD4+ T, CD14+, B, CD8+ T, FCGR3A+,
NK, Dendritic, Megakaryocytes'
outputs:
Anndata with Celltype Annotation:
asserts:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"a_galaxy_workflow": "true",
"annotation": "Single-cell RNA-seq workflow with Scanpy and Anndata. Based on the 3k PBMC clustering tutorial from Scanpy.",
"annotation": "Single-cell RNA-seq workflow with Scanpy and Anndata. Based on the 3k PBMC clustering tutorial from Scanpy. It takes count matrix, barcodes and feature files as input and creates an Anndata object out of them. It then performs QC and filters for lowly expressed genes and cells. Then the data is normalized and scaled. Then PCs are computed to further cluster using louvain algorithm. It also generated various plots of clustering colored with highly ranked genes.",
"comments": [],
"creator": [
{
Expand All @@ -21,7 +21,7 @@
{
"class": "Person",
"identifier": "0000-0001-9852-1987",
"name": "B\u00e9r\u00e9nice Batut"
"name": "Bérénice Batut"
}
],
"format-version": "0.1",
Expand Down
4 changes: 3 additions & 1 deletion workflows/scRNAseq/scanpy-clustering/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Preprocessing and Clustering of Single-cell RNA-seq Data with Scanpy

This workflow follows Scanpy legacy workflow [clustering 3k PBMCs](https://scanpy.readthedocs.io/en/stable/tutorials/basics/clustering-2017.html). For more details on concepts and parameters, please refer to the equivalent Galaxy-based [tutorial](https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-scanpy-pbmc3k/tutorial.html).

## Inputs

### Input datasets
Expand Down Expand Up @@ -35,4 +37,4 @@
## Outputs

- Final output is an Anndata object with annotations of louvain clusters.
- Some informative plots from QC to the end results
- Some informative plots from QC to the end results

0 comments on commit da4ecea

Please sign in to comment.