-
Notifications
You must be signed in to change notification settings - Fork 42
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
POC contrasts csv -> yaml #382
Merged
Merged
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
79ce625
Update local modules
nschcolnicov 31958c7
Update snaps and modules config
nschcolnicov 5f25fb3
POC contrasts csv -> yaml
nschcolnicov e33cf9d
Update naming strategy
nschcolnicov 085341e
Update POC script and added handling for both csv and yaml
nschcolnicov bbb7344
Update grep
nschcolnicov ade0216
Merge pull request #380 from nf-core/update_local_modules
nschcolnicov 887332d
Merge branch 'dev' of https://github.com/nf-core/differentialabundanc…
nschcolnicov d90a576
Updated changelog
nschcolnicov 34ca6ec
Update ci.yml and rever changes in nf-core module
nschcolnicov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,208 @@ | ||
#!/usr/bin/env Rscript | ||
|
||
# Call shinyngs parsing functions to validate simple matrix inputs | ||
|
||
library(optparse) | ||
library(yaml) # Load the yaml package to parse YAML files | ||
|
||
option_list <- list( | ||
make_option( | ||
c("-s", "--sample_metadata"), | ||
type = "character", | ||
default = NULL, | ||
help = "CSV-format sample metadata file." | ||
), | ||
make_option( | ||
c("-i", "--sample_id_col"), | ||
type = "character", | ||
default = "sample", | ||
help = "Column in sample metadata used as sample identifier. Should be used to name columns of expression matrices, and duplicate rows will be removed based on this column." | ||
), | ||
make_option( | ||
c("-f", "--feature_metadata"), | ||
type = "character", | ||
default = NULL, | ||
help = "TSV-format feature (often gene) metadata file." | ||
), | ||
make_option( | ||
c("-j", "--feature_id_col"), | ||
type = "character", | ||
default = "gene_id", | ||
help = "Column in feature metadata used as feature identifier. Should be used to name columns of expression matrices." | ||
), | ||
make_option( | ||
c("-e", "--assay_files"), | ||
type = "character", | ||
default = NULL, | ||
help = "Comma-separated list of TSV-format file expression matrix files." | ||
), | ||
make_option( | ||
c("-c", "--contrasts_file"), | ||
type = "character", | ||
default = NULL, | ||
help = "YAML-format contrast file with model and contrast details." | ||
), | ||
make_option( | ||
c("-d", "--differential_results"), | ||
type = "character", | ||
default = NULL, | ||
help = "Tab-separated files containing at least fold change and p value, one for each row of the contrast file." | ||
), | ||
make_option( | ||
c("-k", "--fold_change_column"), | ||
type = "character", | ||
default = "log2FoldChange", | ||
help = "Column in differential results files holding fold changes." | ||
), | ||
make_option( | ||
c("-u", "--unlog_foldchanges"), | ||
action = "store_true", | ||
default = FALSE, | ||
help = "Set this option if fold changes should be unlogged." | ||
), | ||
make_option( | ||
c("-p", "--pval_column"), | ||
type = "character", | ||
default = "padj", | ||
help = "Column in differential results files holding p values." | ||
), | ||
make_option( | ||
c("-q", "--qval_column"), | ||
type = "character", | ||
default = "padj", | ||
help = "Column in differential results files holding q values/ adjusted p values." | ||
), | ||
make_option( | ||
c("-o", "--output_directory"), | ||
type = "character", | ||
default = NULL, | ||
help = "Serialized R object which can be used to generate a shiny app." | ||
), | ||
make_option( | ||
c("-t", "--separator"), | ||
type = "character", | ||
default = "\t", | ||
help = "Consistent separator for re-written files." | ||
) | ||
) | ||
|
||
opt_parser <- OptionParser(option_list = option_list) | ||
opt <- parse_args(opt_parser) | ||
|
||
# Check mandatory | ||
|
||
mandatory <- | ||
c( | ||
"sample_metadata", | ||
"assay_files" | ||
) | ||
|
||
missing_args <- mandatory[!mandatory %in% names(opt)] | ||
if (length(missing_args) > 0) { | ||
stop(paste("Missing mandatory arguments:", paste(missing_args, collapse = ", "))) | ||
} | ||
|
||
library(shinyngs) | ||
|
||
# Load and parse the YAML contrasts file | ||
if (!is.null(opt$contrasts_file)) { | ||
contrasts_data <- yaml.load_file(opt$contrasts_file) | ||
} else { | ||
stop("Contrasts file not provided.") | ||
} | ||
|
||
# Function to process contrasts data from the YAML format | ||
process_contrasts <- function(contrasts) { | ||
contrasts_list <- lapply(contrasts, function(contrast) { | ||
data.frame( | ||
id = contrast$id, | ||
variable = contrast$comparison[1], # Assuming comparison[1] is the variable | ||
reference = contrast$comparison[2], # Assuming comparison[2] is the reference | ||
target = contrast$comparison[3], # Assuming comparison[3] is the target | ||
blocking = ifelse(is.null(contrast$blocking_factors), NA, paste(contrast$blocking_factors, collapse = ", ")) | ||
) | ||
}) | ||
do.call(rbind, contrasts_list) | ||
} | ||
|
||
# Process the contrasts data | ||
contrasts_df <- process_contrasts(contrasts_data$contrasts) | ||
|
||
# Now validate the inputs and contrasts | ||
# validate_inputs() just wraps the parsing functions of shinyng, used by e.g. | ||
# eselistfromConfig(). These functions are good for ensuring the consistency of | ||
# FOM (feaure/ observation matrix) data. | ||
|
||
validated_parts <- validate_inputs( | ||
samples_metadata = opt$sample_metadata, | ||
features_metadata = opt$feature_metadata, | ||
assay_files = opt$assay_files, | ||
assay_names = opt$assay_names, | ||
# contrasts_file = contrasts_df, # Pass the processed contrasts dataframe | ||
sample_id_col = opt$sample_id_col, | ||
feature_id_col = opt$feature_id_col, | ||
differential_results = opt$differential_results, | ||
pval_column = opt$pval_column, | ||
qval_column = opt$qval_column, | ||
fc_column = opt$fold_change_column, | ||
unlog_foldchanges = opt$unlog_foldchanges | ||
) | ||
|
||
# If an output path is provided we can re-write the data, ensuring consistency | ||
# of output formatting | ||
|
||
if (! is.null(opt$output_directory)){ | ||
|
||
dir.create(opt$output_directory, showWarnings = FALSE, recursive = TRUE) | ||
|
||
# Write the files back, but using the supplied separator | ||
|
||
write_table <- function(x, infile, suffix, na = 'NA'){ | ||
file_basename <- tools::file_path_sans_ext(basename(infile)) | ||
outfile <- file.path(opt$output_directory, paste(file_basename, suffix, 'tsv', sep = '.')) | ||
|
||
print(paste("...... writing", outfile)) | ||
write.table(x, file = outfile, sep = opt$separator, quote = FALSE, row.names = FALSE, na = na) | ||
} | ||
|
||
# Write back the sample sheet, feature metadata and contrasts | ||
|
||
print("Writing basic data...") | ||
for (infile in c('sample_metadata', 'feature_metadata', 'contrasts_file')){ | ||
filename <- opt[[infile]] | ||
if ((! is.null(filename)) && filename %in% names(validated_parts)){ | ||
write(paste("...", infile)) | ||
|
||
# Write contrasts file with empty strings for NAs in blocking | ||
write_table(validated_parts[[filename]], filename, infile, na = ifelse(infile == 'contrasts_file', '', 'NA')) | ||
} | ||
} | ||
|
||
# Write contrasts file with empty strings for NAs in blocking | ||
write_table(contrasts_df, opt$contrasts_file, 'contrasts_file', na = '') | ||
|
||
# Write back the matrices | ||
|
||
print("Writing matrices...") | ||
if ('assays' %in% names(validated_parts)){ | ||
for (assay in names(validated_parts[['assays']])){ | ||
mat <- validated_parts[['assays']][[assay]] | ||
|
||
# Add a column for row names | ||
mat <- data.frame(feature_name = rownames(mat), mat, check.names = FALSE) | ||
colnames(mat)[1] <- opt$feature_id_col | ||
|
||
write_table(mat, assay, 'assay') | ||
} | ||
} | ||
|
||
# Write back the simplified differential results (if supplied) | ||
|
||
if ('differential_stats' %in% names(validated_parts)){ | ||
for (ds in names(validated_parts[['differential_stats']])){ | ||
write_table(validated_parts[['differential_stats']][[ds]], ds) | ||
} | ||
} | ||
|
||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a new file, created from https://github.com/pinin4fjords/shinyngs/blob/develop/exec/validate_fom_components.R