Skip to content

Commit

Permalink
Docs and dev example for Pca.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereckmezquita committed Jul 14, 2024
1 parent aecef8a commit ebee26d
Show file tree
Hide file tree
Showing 3 changed files with 304 additions and 42 deletions.
13 changes: 3 additions & 10 deletions dev/pca/pca-comparison.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,9 @@ data <- feature_counts[GeneBiotype == "protein_coding", ]

colnames(data)[1] <- "feature"

comp_table <- dt$fread(
"group sample
A T64552
A T64553
A T64554
A T64555
B T64546
B T64548
B T64549
B T64550"
comp_table <- data.frame(
group = c("A", "A", "A", "A", "B", "B", "B", "B"),
sample = c("T64552", "T64553", "T64554", "T64555", "T64546", "T64548", "T64549", "T64550")
)

comp <- Comparison$new(
Expand Down
63 changes: 31 additions & 32 deletions man/Comparison.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

270 changes: 270 additions & 0 deletions man/Pca.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ebee26d

Please sign in to comment.