Skip to content

Commit 645b258

Browse files
committed
NF_MAAffymetrix: update tool versions
1 parent 4b490ba commit 645b258

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

Microarray/Affymetrix/Pipeline_GL-DPPD-7114_Versions/GL-DPPD-7114-A.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,21 @@ Lauren Sanders (acting GeneLab Project Scientist)
5757

5858
|Program|Version|Relevant Links|
5959
|:------|:------:|:-------------|
60-
|R|4.1.3|[https://www.bioinformatics.babraham.ac.uk/projects/fastqc/](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/)|
61-
|DT|0.26|[https://github.com/rstudio/DT](https://github.com/rstudio/DT)|
62-
|dplyr|1.0.10|[https://dplyr.tidyverse.org](https://dplyr.tidyverse.org)|
63-
|tibble|3.1.8|[https://tibble.tidyverse.org](https://tibble.tidyverse.org)|
64-
|stringr|1.5.0|[https://stringr.tidyverse.org](https://stringr.tidyverse.org)|
65-
|R.utils|2.12.2|[https://github.com/HenrikBengtsson/R.utils](https://github.com/HenrikBengtsson/R.utils)|
66-
|oligo|1.58.0|[https://bioconductor.org/packages/3.14/bioc/html/oligo.html](https://bioconductor.org/packages/3.14/bioc/html/oligo.html)|
67-
|limma|3.50.3|[https://bioconductor.org/packages/3.14/bioc/html/limma.html](https://bioconductor.org/packages/3.14/bioc/html/limma.html)|
68-
|glue|1.6.2|[https://glue.tidyverse.org](https://glue.tidyverse.org)|
69-
|biomaRt|2.50.0|[https://bioconductor.org/packages/3.14/bioc/html/biomaRt.html](https://bioconductor.org/packages/3.14/bioc/html/biomaRt.html)|
70-
|matrixStats|0.63.0|[https://github.com/HenrikBengtsson/matrixStats](https://github.com/HenrikBengtsson/matrixStats)|
60+
|R|4.4.2|[https://www.r-project.org/](https://www.r-project.org/)|
61+
|DT|0.33|[https://github.com/rstudio/DT](https://github.com/rstudio/DT)|
62+
|dplyr|1.1.4|[https://dplyr.tidyverse.org](https://dplyr.tidyverse.org)|
63+
|tibble|3.2.1|[https://tibble.tidyverse.org](https://tibble.tidyverse.org)|
64+
|stringr|1.5.1|[https://stringr.tidyverse.org](https://stringr.tidyverse.org)|
65+
|R.utils|2.12.3|[https://github.com/HenrikBengtsson/R.utils](https://github.com/HenrikBengtsson/R.utils)|
66+
|oligo|1.70.0|[https://bioconductor.org/packages/3.14/bioc/html/oligo.html](https://bioconductor.org/packages/3.14/bioc/html/oligo.html)|
67+
|limma|3.62.2|[https://bioconductor.org/packages/3.14/bioc/html/limma.html](https://bioconductor.org/packages/3.14/bioc/html/limma.html)|
68+
|glue|1.8.0|[https://glue.tidyverse.org](https://glue.tidyverse.org)|
69+
|biomaRt|2.62.0|[https://bioconductor.org/packages/3.14/bioc/html/biomaRt.html](https://bioconductor.org/packages/3.14/bioc/html/biomaRt.html)|
70+
|matrixStats|1.5.0|[https://github.com/HenrikBengtsson/matrixStats](https://github.com/HenrikBengtsson/matrixStats)|
7171
|statmod|1.5.0|[https://github.com/cran/statmod](https://github.com/cran/statmod)|
72-
|dp_tools|1.3.4|[https://github.com/J-81/dp_tools](https://github.com/J-81/dp_tools)|
72+
|dp_tools|1.3.5|[https://github.com/J-81/dp_tools](https://github.com/J-81/dp_tools)|
7373
|singularity|3.9|[https://sylabs.io](https://sylabs.io)|
74-
|Quarto|1.2.313|[https://quarto.org](https://quarto.org)|
74+
|Quarto|1.6.40|[https://quarto.org](https://quarto.org)|
7575

7676
---
7777

Microarray/Affymetrix/Workflow_Documentation/NF_MAAffymetrix/workflow_code/bin/dp_tools__affymetrix/checks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ def utils_common_constraints_on_dataframe(
319319
col_constraints = col_constraints.copy()
320320

321321
# limit to only columns of interest
322-
query_df = df[col_set]
323-
for (colname, colseries) in query_df.iteritems():
322+
query_df = df[list(col_set)]
323+
for (colname, colseries) in query_df.items():
324324
# check non null constraint
325325
if col_constraints.pop("nonNull", False) and nonNull(colseries) == False:
326326
issues["Failed non null constraint"].append(colname)
@@ -398,7 +398,7 @@ def check_dge_table_sample_columns_constraints(
398398
) -> FlagEntry:
399399
MINIMUM_COUNT = 0
400400
# data specific preprocess
401-
df_dge = pd.read_csv(dge_table)[samples]
401+
df_dge = pd.read_csv(dge_table)[list(samples)]
402402

403403
schema = pa.DataFrameSchema({
404404
sample: pa.Column(float)

Microarray/Affymetrix/Workflow_Documentation/NF_MAAffymetrix/workflow_code/bin/dp_tools__affymetrix_skipDE/checks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ def utils_common_constraints_on_dataframe(
319319
col_constraints = col_constraints.copy()
320320

321321
# limit to only columns of interest
322-
query_df = df[col_set]
323-
for (colname, colseries) in query_df.iteritems():
322+
query_df = df[list(col_set)]
323+
for (colname, colseries) in query_df.items():
324324
# check non null constraint
325325
if col_constraints.pop("nonNull", False) and nonNull(colseries) == False:
326326
issues["Failed non null constraint"].append(colname)
@@ -398,7 +398,7 @@ def check_dge_table_sample_columns_constraints(
398398
) -> FlagEntry:
399399
MINIMUM_COUNT = 0
400400
# data specific preprocess
401-
df_dge = pd.read_csv(dge_table)[samples]
401+
df_dge = pd.read_csv(dge_table)[list(samples)]
402402

403403
schema = pa.DataFrameSchema({
404404
sample: pa.Column(float)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
process {
22
withName: 'PROCESS_AFFYMETRIX' {
3-
container = "quay.io/j_81/gl_images:NF_AffyMP-A_1.0.0-RC7"
3+
container = "quay.io/nasa_genelab/gl-microarray:1.0.0"
44
}
55
withName: 'RUNSHEET_FROM_GLDS|RUNSHEET_FROM_ISA|VV_AFFYMETRIX|GENERATE_MD5SUMS|UPDATE_ISA_TABLES|GENERATE_SOFTWARE_TABLE' {
6-
container = "quay.io/j_81/dp_tools:1.3.4"
6+
container = "quay.io/nasa_genelab/dp_tools:1.3.5"
77
}
88
}

0 commit comments

Comments
 (0)