Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: make example config/config.yaml consistent with config/samples.tsv #77

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,23 @@ diffexp:
variables_of_interest:
treatment_1:
# any fold change will be relative to this factor level
base_level: B
base_level: untreated
treatment_2:
# any fold change will be relative to this factor level
base_level: C
base_level: untreated
# variables whose effect you want to model to separate them from your
# variables_of_interest
batch_effects:
- jointly_handled
# contrasts for the deseq2 results method to determine fold changes
contrasts:
A-vs-B_treatment_1:
treatment_1:
# must be one of the variables_of_interest, for details see:
# https://www.bioconductor.org/packages/devel/bioc/vignettes/DESeq2/inst/doc/DESeq2.html#contrasts
variable_of_interest: treatment_1
# must be a level present in the variable_of_interest that is not the
# base_level specified above
level_of_interest: A
level_of_interest: treated
# The default model includes all interactions among variables_of_interest
# and batch_effects added on. For the example above this implicitly is:
# model: ~jointly_handled + treatment_1 * treatment_2
Expand Down
Loading