-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc19791
commit 82b3919
Showing
14 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
mmeds/snakemake/workflows/core_pipeline_taxonomic.Snakefile
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,18 @@ | ||
configfile: "config_file.yaml" | ||
report: "report.rst" | ||
|
||
include: "{snakemake_dir}/common.smk" | ||
include: "{snakemake_dir}/demux_denoise.smk" | ||
include: "{snakemake_dir}/process_sequencing_data.smk" | ||
include: "{snakemake_dir}/diversity_analysis.smk" | ||
include: "{snakemake_dir}/taxonomy.smk" | ||
include: "{snakemake_dir}/differential_abundance.smk" | ||
include: "{snakemake_dir}/table_filtering.smk" | ||
|
||
rule results: | ||
input: | ||
expand("diversity/ANOVA/{{metric}}_group_ANOVA.qzv", metric=config['alpha_metrics']), | ||
expand("diversity/PERMANOVA/{{var}}/{{metric}}_{{var}}_PERMANOVA.qzv", metric=config['beta_metrics'], var=config['metadata']), | ||
"diversity/alpha_rarefaction.qzv", | ||
"tables/taxa_barplot.qzv", | ||
expand("differential_abundance/{{var}}/ancom-bc_{{table}}_{{var}}_barplot.qzv", table=expand("taxa_table_L{{level}}", level=config['taxa_levels']), var=config['metadata']) |
20 changes: 20 additions & 0 deletions
20
test_files/test_snakemake/core_pipeline_taxonomic/core_pipeline_taxonomic.Snakefile
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,20 @@ | ||
configfile: "test_config.yaml" | ||
report: "report.rst" | ||
|
||
include: "snakemake_dir/common.smk" | ||
include: "snakemake_dir/demux_denoise.smk" | ||
include: "snakemake_dir/process_sequencing_data.smk" | ||
include: "snakemake_dir/table_filtering.smk" | ||
include: "snakemake_dir/diversity_analysis.smk" | ||
include: "snakemake_dir/taxonomy.smk" | ||
include: "snakemake_dir/differential_abundance.smk" | ||
|
||
rule results: | ||
input: | ||
expand("diversity/ANOVA/{metric}_group_ANOVA.qzv", metric=config['alpha_metrics']), | ||
expand("diversity/PERMANOVA/{var}/{metric}_{var}_PERMANOVA.qzv", metric=config['beta_metrics'], var=config['metadata']), | ||
"diversity/alpha_rarefaction.qzv", | ||
"tables/taxa_barplot.qzv", | ||
expand("tables/taxa_table_L{level}.qza", level=config['taxa_levels']), | ||
expand("differential_abundance/{var}/ancom-bc_{table}_{var}_barplot.qzv", table=expand("taxa_table_L{level}", level=config['taxa_levels']), var=config['metadata']) | ||
|
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
93 changes: 93 additions & 0 deletions
93
test_files/test_snakemake/core_pipeline_taxonomic/tables/qiime_mapping_file.tsv
Large diffs are not rendered by default.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
test_files/test_snakemake/core_pipeline_taxonomic/test_config.yaml
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,19 @@ | ||
sampling_depth: 1000 | ||
sequencing_runs: | ||
- TEST_RUN | ||
- TEST_DUAL_RUN | ||
metadata: | ||
- Sex | ||
- Group | ||
alpha_metrics: | ||
- faith_pd | ||
- observed_features | ||
beta_metrics: | ||
- bray_curtis | ||
- unweighted_unifrac | ||
taxa_levels: | ||
- 2 | ||
- 5 | ||
- 6 | ||
- 7 | ||
taxanomic_database: test |