Skip to content

Commit

Permalink
Initialize notes for every class
Browse files Browse the repository at this point in the history
  • Loading branch information
lcolladotor committed Mar 24, 2020
1 parent 2699374 commit c468bbc
Show file tree
Hide file tree
Showing 14 changed files with 91 additions and 1 deletion.
13 changes: 13 additions & 0 deletions R/00-setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,16 @@ usethis::use_github() ## commit first, then run this command

## Start 01-intro notes
usethis::use_r('01-introduction.R')

## More general:
r_files <- dir('../osca_LIIGH_UNAM_2020/', pattern = '[0-9]+.*\\.R$')
for(i in seq_along(r_files)) {
r_content <- glue::glue('# Notes for {r_files[i]}
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/{r_files[i]}
## Notes
')
writeLines(r_content, here::here('R', r_files[i]))
}
6 changes: 6 additions & 0 deletions R/00-template.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 00-template.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/00-template.R

## Notes

7 changes: 6 additions & 1 deletion R/01-introduction.R
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
## Notes for the introduction
# Notes for 01-introduction.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/01-introduction.R

## Notes

6 changes: 6 additions & 0 deletions R/02-data-infrastructure-and-import.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 02-data-infrastructure-and-import.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/02-data-infrastructure-and-import.R

## Notes

6 changes: 6 additions & 0 deletions R/03-quality-control.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 03-quality-control.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/03-quality-control.R

## Notes

6 changes: 6 additions & 0 deletions R/04-normalization.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 04-normalization.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/04-normalization.R

## Notes

6 changes: 6 additions & 0 deletions R/05-feature-selection.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 05-feature-selection.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/05-feature-selection.R

## Notes

6 changes: 6 additions & 0 deletions R/06-dimensionality-reduction.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 06-dimensionality-reduction.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/06-dimensionality-reduction.R

## Notes

6 changes: 6 additions & 0 deletions R/07-clustering.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 07-clustering.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/07-clustering.R

## Notes

6 changes: 6 additions & 0 deletions R/08-marker-gene-detection.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 08-marker-gene-detection.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/08-marker-gene-detection.R

## Notes

6 changes: 6 additions & 0 deletions R/09-cell-annotation.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 09-cell-annotation.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/09-cell-annotation.R

## Notes

6 changes: 6 additions & 0 deletions R/10-data-integration.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 10-data-integration.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/10-data-integration.R

## Notes

6 changes: 6 additions & 0 deletions R/11-multi-sample-comparisons.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 11-multi-sample-comparisons.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/11-multi-sample-comparisons.R

## Notes

6 changes: 6 additions & 0 deletions R/12-spatial-transcriptomics.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Notes for 12-spatial-transcriptomics.R
# --------------------------------------
## Copy code from https://github.com/lcolladotor/osca_LIIGH_UNAM_2020/blob/master/12-spatial-transcriptomics.R

## Notes

0 comments on commit c468bbc

Please sign in to comment.