Add rule to run salmon in PE mode
Add rule to run salmon in PE mode
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
- Show closed items
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
- Author Maintainer
################################################################################ ### Salmon quantify based on reads ################################################################################ rule salmon_quant_reads_PE: input: mate_1_reads = os.path.join(config["output_dir"], "{sample}", "cutadapt", "trim_3p_adapter_mate1.fastq.gz"), mate_2_reads = os.path.join(config["output_dir"], "{sample}", "cutadapt", "trim_3p_adapter_mate2.fastq.gz"), index = os.path.join(config["output_dir"], "annotation", "annotation.filtered.salmon.idx"), transcriptid2geneid = os.path.join(config["output_dir"], "annotation", "annotation.filtered.transcriptid2geneid.txt") output: salmon_out = os.path.join(config["output_dir"], "{sample}", "salmon", "quant_reads", "quant.sf"), salmon_genes_out = os.path.join(config["output_dir"], "{sample}", "salmon", "quant_reads", "quant.genes.sf"), params: libType = "A", salmon_dir = os.path.join(config["output_dir"], "{sample}", "salmon", "quant_reads") log: os.path.join(config["local_log"], "salmon_quant_reads_PE_{sample}.log") threads: 12 conda: "envs/salmon.yaml" shell: "(salmon quant \ --libType {params.libType} \ --seqBias \ --validateMappings \ --threads {threads} \ --writeUnmappedNames \ --index {input.index} \ --geneMap {input.transcriptid2geneid} \ -1 {input.mate_1_reads} \ -2 {input.mate_2_reads} \ -o {params.salmon_dir}) &> {log}"
- BIOPZ-Katsantoni Maria added Doing label
added Doing label
- BIOPZ-Katsantoni Maria assigned to @katsanto
assigned to @katsanto
- BIOPZ-Gypas Foivos mentioned in merge request !4 (merged)
mentioned in merge request !4 (merged)
- BIOPZ-Gypas Foivos mentioned in commit 9017c055
mentioned in commit 9017c055
- BIOPZ-Gypas Foivos closed via merge request !4 (merged)
closed via merge request !4 (merged)
- BIOPZ-Iborra de Toledo Paula removed Doing label
removed Doing label
- Alex Kanitz added 1 deleted label
added 1 deleted label
- Alex Kanitz mentioned in issue #48 (closed)
mentioned in issue #48 (closed)
- BIOPZ-Iborra de Toledo Paula mentioned in merge request !15 (merged)
mentioned in merge request !15 (merged)
- BIOPZ-Iborra de Toledo Paula mentioned in commit ca9a2bb4
mentioned in commit ca9a2bb4
- BIOPZ-Gypas Foivos mentioned in commit 81f80f7a
mentioned in commit 81f80f7a
Please register or sign in to reply