-
Notifications
You must be signed in to change notification settings - Fork 0
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
tdayris
committed
Jan 16, 2024
1 parent
720e4c2
commit 22dd4b8
Showing
22 changed files
with
77,474 additions
and
124 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,41 @@ | ||
samples: config/samples.csv | ||
|
||
# # Optional parameters | ||
# params: | ||
# bowtie2: | ||
# # Optional parameters for bowtie2-build | ||
# build: "" | ||
# # Optional parameters for bowtie2-align | ||
# align: "" | ||
# sambamba: | ||
# # Optional parameters for sambamba view | ||
# view: "--format 'bam' --filter 'mapping_quality >= 30 and not (unmapped or mate_is_unmapped)' " | ||
# # Optional parameters for sambamba markdup | ||
# markdup: "--remove-duplicates" | ||
# Optional parameters | ||
params: | ||
# Optional parameters for fastp | ||
fastp: | ||
# Optional adapters to remove | ||
adapters: "" | ||
# Optional command line arguments for fastp | ||
extra: "" | ||
# Optional parameters for fastqc | ||
fastqc: "" | ||
# Optional parameters for bowtie2 | ||
bowtie2: | ||
# Optional parameters for bowtie2-build | ||
build: "" | ||
# Optional parameters for bowtie2-align | ||
align: "" | ||
sambamba: | ||
# Optional parameters for sambamba view | ||
view: "--format 'bam' " | ||
# Optional parameters for sambamba markdup | ||
markdup: "--overflow-list-size=500000" | ||
picard: | ||
# Mapping QC optional parameters | ||
metrics: "" | ||
# Optional parameters for samtools stats | ||
samtools: "" | ||
# Optional parameters for multiqc | ||
multiqc: "--module picard --module fastqc --module fastp --module samtools --module bowtie2 --module sambamba --zip-data-dir --verbose --no-megaqc-upload --no-ansi --force" | ||
|
||
# Optional path to a `genome.csv` file | ||
genomes: config/genomes.csv | ||
|
||
# Internal use only, not described in documentation. | ||
# deactivate import of fair_genome_indexer pipeline. | ||
# Requires the file `genome.csv` to be filled. | ||
# load_fair_genome_indexer: true | ||
# Deactivate the import of fair_fastqc_multiqc pipeline. | ||
# Requires to redefine fastqc and multiqc rules. | ||
# load_fair_fastqc_multiqc: true |
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,7 @@ | ||
species,build,release | ||
saccharomyces_cerevisiae,R64-1-1,111 | ||
homo_sapiens,GRCh38,111 | ||
homo_sapiens,GRCh37,75 | ||
mus_musculus,GRCm39,111 | ||
mus_musculus,GRCm38,102 | ||
salmo_salar,Ssal_v3.1,111 |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
sample_id,upstream_file,downstream_file,species,build,release | ||
sac_a,data/reads/a.scerevisiae.1.fq,data/reads/a.scerevisiae.2.fq,saccharomyces_cerevisiae,R64-1-1,110 | ||
sac_b,data/reads/b.scerevisiae.1.fq,,saccharomyces_cerevisiae,R64-1-1,110 | ||
sac_a,data/reads/a.scerevisiae.1.fq,data/reads/a.scerevisiae.2.fq,saccharomyces_cerevisiae,R64-1-1,111 | ||
sac_b,data/reads/b.scerevisiae.1.fq,,saccharomyces_cerevisiae,R64-1-1,111 |
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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,41 @@ | ||
samples: config/samples.csv | ||
|
||
# # Optional parameters | ||
# params: | ||
# bowtie2: | ||
# # Optional parameters for bowtie2-build | ||
# build: "" | ||
# # Optional parameters for bowtie2-align | ||
# align: "" | ||
# sambamba: | ||
# # Optional parameters for sambamba view | ||
# view: "--format 'bam' --filter 'mapping_quality >= 30 and not (unmapped or mate_is_unmapped)' " | ||
# # Optional parameters for sambamba markdup | ||
# markdup: "--remove-duplicates --overflow-list-size=500000" | ||
# picard: | ||
# # Mapping QC optional parameters | ||
# metrics: "" | ||
# Optional parameters | ||
params: | ||
# Optional parameters for fastp | ||
fastp: | ||
# Optional adapters to remove | ||
adapters: "" | ||
# Optional command line arguments for fastp | ||
extra: "" | ||
# Optional parameters for fastqc | ||
fastqc: "" | ||
# Optional parameters for bowtie2 | ||
bowtie2: | ||
# Optional parameters for bowtie2-build | ||
build: "" | ||
# Optional parameters for bowtie2-align | ||
align: "" | ||
sambamba: | ||
# Optional parameters for sambamba view | ||
view: "--format 'bam' --filter 'mapping_quality >= 30 and not (unmapped or mate_is_unmapped)' " | ||
# Optional parameters for sambamba markdup | ||
markdup: "--remove-duplicates --overflow-list-size=500000" | ||
picard: | ||
# Mapping QC optional parameters | ||
metrics: "" | ||
# Optional parameters for samtools stats | ||
samtools: "" | ||
# Optional parameters for multiqc | ||
multiqc: "--module picard --module fastqc --module fastp --module samtools --module bowtie2 --module sambamba --zip-data-dir --verbose --no-megaqc-upload --no-ansi --force" | ||
|
||
# Optional path to a `genome.csv` file | ||
# genomes: genome.csv | ||
genomes: config/genomes.csv | ||
|
||
# Internal use only, not described in documentation. | ||
# deactivate import of fair_genome_indexer pipeline. | ||
# Requires the file `genome.csv` to be filled. | ||
# load_fair_genome_indexer: true | ||
# load_fair_genome_indexer: true | ||
# Deactivate the import of fair_fastqc_multiqc pipeline. | ||
# Requires to redefine fastqc and multiqc rules. | ||
# load_fair_fastqc_multiqc: true |
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,7 @@ | ||
species,build,release | ||
saccharomyces_cerevisiae,R64-1-1,111 | ||
homo_sapiens,GRCh38,111 | ||
homo_sapiens,GRCh37,75 | ||
mus_musculus,GRCm39,111 | ||
mus_musculus,GRCm38,102 | ||
salmo_salar,Ssal_v3.1,111 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
sample_id,upstream_file,downstream_file,species,build,release | ||
sac_a,ngs-test-data/reads/a.scerevisiae.1.fq,ngs-test-data/reads/a.scerevisiae.2.fq,saccharomyces_cerevisiae,R64-1-1,110 | ||
sac_a,ngs-test-data/reads/a.scerevisiae.1.fq,ngs-test-data/reads/a.scerevisiae.2.fq,saccharomyces_cerevisiae,R64-1-1,111 |
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
This HTML_ file contains quality reports of both Fastp_ and Picard_. | ||
This HTML_ file contains quality reports of Fastp_, Picard_, Samtools_, FastQC_, and Bowtie2_. | ||
It is a stand-alone file, and can be opened in your favorite web-browser. | ||
|
||
.. _HTML: https://en.wikipedia.org/wiki/HTML | ||
.. _Fastp: https://snakemake-wrappers.readthedocs.io/en/v3.3.3/wrappers/fastp.html | ||
.. _Bowtie2: https://snakemake-wrappers.readthedocs.io/en/v3.3.3/wrappers/bowtie2/align.html | ||
.. _FastQC: https://snakemake-wrappers.readthedocs.io/en/v3.3.3/wrappers/fastqc.html | ||
.. _Stats: https://snakemake-wrappers.readthedocs.io/en/v3.3.3/wrappers/samtools/stats.html | ||
.. _Picard: https://snakemake-wrappers.readthedocs.io/en/v3.3.3/wrappers/picard/collectmultiplemetrics.html |
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,15 @@ | ||
module fair_fastqc_multiqc: | ||
snakefile: | ||
github("tdayris/fair_fastqc_multiqc", path="workflow/Snakefile", tag="1.0.4") | ||
config: | ||
{ | ||
"samples": config.get("samples", "config/samples.csv"), | ||
"genomes": config.get("genomes", "config/genomes.csv"), | ||
"params": { | ||
"fastqc": config.get("params", {}).get("fastqc", ""), | ||
"multiqc": config.get("params", {}).get("multiqc", {}), | ||
}, | ||
} | ||
|
||
|
||
use rule * from fair_fastqc_multiqc |
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.