Skip to content

Commit

Permalink
Merge branch 'master' into RELEASE_3_17
Browse files Browse the repository at this point in the history
  • Loading branch information
olapuentesantana committed May 26, 2023
2 parents 6b5abf1 + 4be6fc8 commit 2b9be58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: easier
Title: Estimate Systems Immune Response from RNA-seq data
Version: 1.6.2
Version: 1.7.0
Authors@R:
c(
person(
Expand Down
3 changes: 3 additions & 0 deletions vignettes/easier_user_manual.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@ More detailed information on how these networks were obtained can be found in th
```{r, eval=TRUE}
lrpair_weights <- compute_LR_pairs(RNA_tpm = RNA_tpm,
cancer_type = "pancan")
# Remove LR which are not found (NA's)
na_lrpairs <- names(lrpair_weights)[is.na(apply(lrpair_weights, 2, sum))]
lrpair_weights <- lrpair_weights[, -which(colnames(lrpair_weights) %in% na_lrpairs)]
head(lrpair_weights[,1:5])
```

Expand Down

0 comments on commit 2b9be58

Please sign in to comment.