-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from WackerO/add_proteus
Add proteus module for maxquant data analysis
- Loading branch information
Showing
19 changed files
with
821 additions
and
57 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running MaxQuant proteomics analysis | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines settings specific to MaxQuant proteomics analysis | ||
Use as follows: | ||
nextflow run nf-core/differentialabundance -profile maxquant,<docker/singularity> --outdir <OUTDIR> | ||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
|
||
config_profile_name = 'MaxQuant profile' | ||
config_profile_description = 'Settings for MaxQuant analysis' | ||
|
||
// Study | ||
study_type = 'maxquant' | ||
study_abundance_type = 'intensities' | ||
|
||
// Features | ||
features_id_col = 'Majority protein IDs' | ||
features_name_col = 'Majority protein IDs' | ||
features_metadata_cols = 'Majority protein IDs' | ||
features_type = 'protein' | ||
|
||
// Exploratory | ||
exploratory_assay_names = "raw,normalised" | ||
exploratory_final_assay = "normalised" | ||
|
||
// Differential options | ||
differential_file_suffix = ".limma.results.tsv" | ||
differential_fc_column = "logFC" | ||
differential_pval_column = "P.Value" | ||
differential_qval_column = "adj.P.Val" | ||
differential_feature_id_column = "probe_id" | ||
differential_feature_name_column = "Majority protein IDs" | ||
|
||
// Proteus options | ||
proteus_measurecol_prefix = 'LFQ intensity ' | ||
|
||
// Shiny does not work for this datatype | ||
shinyngs_build_app = false | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a fast and simple | ||
pipeline test with MaxQuant Mass-spec data. | ||
Use as follows: | ||
nextflow run nf-core/differentialabundance -profile test_maxquant,<docker/singularity> --outdir <OUTDIR> | ||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
includeConfig 'maxquant.config' | ||
|
||
params { | ||
study_name = 'PXD043349' | ||
config_profile_name = 'MaxQuant test profile' | ||
config_profile_description = 'MaxQuant test dataset to check pipeline function' | ||
|
||
// Limit resources so that this can run on GitHub Actions | ||
max_cpus = 2 | ||
max_memory = '6.GB' | ||
max_time = '6.h' | ||
|
||
// Input data | ||
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/proteomics/maxquant/MaxQuant_samplesheet.tsv' | ||
matrix = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/proteomics/maxquant/MaxQuant_proteinGroups.txt' | ||
contrasts = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/proteomics/maxquant/MaxQuant_contrasts.csv' | ||
|
||
// Observations | ||
observations_id_col = 'Experiment' | ||
observations_name_col = 'Name' | ||
|
||
// Exploratory | ||
exploratory_main_variable = 'Celltype' | ||
} |
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.