Skip to content

Commit

Permalink
feat: add resolution 0.1 to non-cite workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rroutsong committed Jan 16, 2025
1 parent 38d496b commit db7af51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/scripts/seuratSampleQC.R
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ seur <- RunUMAP(seur, reduction = 'pca', dims = 1:30, assay = 'RNA')

coord <- Embeddings(seur, reduction='pca')[,1:30]
d <- dist(coord, method="euclidean")
for(resolution in c(seq(0.2,1.0,0.2), 1.5, 2.0)){
for(resolution in c(0.1, seq(0.2,1.0,0.2), 1.5, 2.0)){
seur <- FindClusters(seur, resolution = resolution)

#Calculate silhouette scores and generate plots
Expand Down

0 comments on commit db7af51

Please sign in to comment.