Skip to content

Commit

Permalink
comment global.yaml and add nodefaults
Browse files Browse the repository at this point in the history
  • Loading branch information
sreichl committed Dec 20, 2024
1 parent ede22fe commit fbe83ca
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion workflow/Snakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

##### global workflow dependencies #####
conda: "envs/global.yaml"
# conda: "envs/global.yaml"

# libraries
import yaml
Expand Down
2 changes: 1 addition & 1 deletion workflow/envs/ComplexHeatmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ channels:
- conda-forge
- bioconda
- r
- defaults
- nodefaults
dependencies:
- bioconductor-complexheatmap=2.10.0
- r-rcolorbrewer=1.1_3
Expand Down
2 changes: 1 addition & 1 deletion workflow/envs/cqn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: cqn
channels:
- conda-forge
- bioconda
- defaults
- nodefaults
dependencies:
- bioconductor-cqn=1.44.0
- r-data.table=1.15.2
2 changes: 1 addition & 1 deletion workflow/envs/edgeR.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: edgeR
channels:
- conda-forge
- bioconda
- defaults
- nodefaults
dependencies:
- bioconductor-edger=3.32.1
- bioconductor-limma=3.46.0
Expand Down
2 changes: 1 addition & 1 deletion workflow/envs/ggplot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ggplot
channels:
- conda-forge
- bioconda
- defaults
- nodefaults
dependencies:
- r-ggplot2=3.4.2
- r-patchwork=1.1.2
Expand Down
2 changes: 1 addition & 1 deletion workflow/envs/python_basics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: python_basics
channels:
- conda-forge
- bioconda
- defaults
- nodefaults
dependencies:
- python=3.10
- pandas=1.5.3
Expand Down
2 changes: 1 addition & 1 deletion workflow/envs/reComBat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: reComBat
channels:
- conda-forge
- bioconda
- defaults
- nodefaults
dependencies:
- python=3.10
- scikit-learn=1.3.0
Expand Down
2 changes: 1 addition & 1 deletion workflow/scripts/plot_diagnostics.R
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ cfa_plot <- ggplot(log_p_values_melted, aes(x = PC, y = Metadata, fill = value))
)

# determine plot size
heigth_hm <- dim(p_values)[1] * 0.2
heigth_hm <- dim(p_values)[1] * 0.2 + 1
width_hm <- dim(p_values)[2] * 0.75 + 1

# save plot
Expand Down

0 comments on commit fbe83ca

Please sign in to comment.