Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sirplus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BioCellGen-public
sirplus
Commits
dbac87de
Commit
dbac87de
authored
7 years ago
by
Luke Zappia
Browse files
Options
Downloads
Patches
Plain Diff
Add mfa to lists
parent
dd3df053
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
R/listSims.R
+10
-4
10 additions, 4 deletions
R/listSims.R
_pkgdown.yml
+3
-0
3 additions, 0 deletions
_pkgdown.yml
with
13 additions
and
4 deletions
R/listSims.R
+
10
−
4
View file @
dbac87de
...
...
@@ -15,7 +15,8 @@ listSims <- function(print = TRUE) {
sims
<-
list
(
c
(
"Splat"
,
"splat"
,
""
,
""
,
"The Splat simulation generates means from a gamma
distribution, adjusts them for BCV and generates counts from
a gamma-poisson. Dropout can be optionally added."
),
a gamma-poisson. Dropout and batch effects can be optionally
added."
),
c
(
"Splat Single"
,
"splatSingle"
,
""
,
""
,
"The Splat simulation with a single population."
),
c
(
"Splat Groups"
,
"splatGroups"
,
""
,
""
,
...
...
@@ -46,12 +47,17 @@ listSims <- function(print = TRUE) {
"kdkorthauer/scDD"
,
"The scDD simulation samples a given dataset and can
simulate differentially expressed and differentially
distributed genes between two conditions."
))
distributed genes between two conditions."
),
c
(
"mfa"
,
"mfa"
,
"10.12688/wellcomeopenres.11087.1"
,
"kieranrcampbell/mfa"
,
"The mfa simulation produces a bifurcating pseudotime
trajectory. This can optionally include genes with transient
changes in expression and added dropout."
))
sims.table
<-
data.frame
(
Name
=
rep
(
NA
,
length
(
sims
)),
Prefix
=
rep
(
NA
,
length
(
sims
)),
DOI
=
rep
(
NA
,
length
(
sims
)),
Git
h
ub
=
rep
(
NA
,
length
(
sims
)),
Git
H
ub
=
rep
(
NA
,
length
(
sims
)),
Description
=
rep
(
NA
,
length
(
sims
)))
for
(
idx
in
seq_along
(
sims
))
{
...
...
@@ -65,7 +71,7 @@ listSims <- function(print = TRUE) {
for
(
idx
in
seq_len
(
nrow
(
sims.table
)))
{
sim
<-
as.character
(
sims.table
[
idx
,
])
cat
(
sim
[
1
],
paste0
(
"("
,
sim
[
2
],
")"
),
"\n"
)
cat
(
"DOI:"
,
sim
[
3
],
"\t"
,
"Git
h
ub:"
,
sim
[
4
],
"\n"
)
cat
(
"DOI:"
,
sim
[
3
],
"\t"
,
"Git
H
ub:"
,
sim
[
4
],
"\n"
)
cat
(
sim
[
5
],
"\n\n"
)
}
}
...
...
This diff is collapsed.
Click to expand it.
_pkgdown.yml
+
3
−
0
View file @
dbac87de
...
...
@@ -12,6 +12,7 @@ reference:
-
'
`getParams`'
-
'
`Lun2Params`'
-
'
`LunParams`'
-
'
`MFAParams`'
-
'
`newParams`'
-
'
`Params`'
-
'
`SCDDParams`'
...
...
@@ -24,6 +25,7 @@ reference:
contents
:
-
'
`lun2Estimate`'
-
'
`lunEstimate`'
-
'
`mfaEstimate`'
-
'
`scDDEstimate`'
-
'
`simpleEstimate`'
-
'
`splatEstBCV`'
...
...
@@ -37,6 +39,7 @@ reference:
contents
:
-
'
`lun2Simulate`'
-
'
`lunSimulate`'
-
'
`mfaSimulate`'
-
'
`scDDSimulate`'
-
'
`simpleSimulate`'
-
'
`splatSimBatchCellMeans`'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment