Skip to content

Commit

Permalink
Merge branch 'develop' into fix988mRNAseq
Browse files Browse the repository at this point in the history
  • Loading branch information
katsikora authored Mar 21, 2024
2 parents 4dfc7fe + 1c72fae commit c3fd12a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion snakePipes/parserCommon.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ def snpArguments(defaults):

snpargs.add_argument("--NMaskedIndex",
default='',
help="N-masked index of the reference genome (default: 'None')")
help="N-masked index of the reference genome (default: 'None'). "
"Note that this should point to a file (i.e. 'Genome' for STAR indices, genome.1.bt2 for bowtie2 indices).")

return parser

Expand Down
4 changes: 2 additions & 2 deletions snakePipes/shared/rules/SNPsplit.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ if aligner == "Bowtie2":
output:
targetbam = expand("allelic_bams/{{sample}}.filtered.{suffix}.bam", suffix = ['allele_flagged', 'genome1', 'genome2', 'unassigned']),
tempbam = temp("filtered_bam/{sample}.filtered.sortedByName.bam"),
rep1 = "allelic_bams/{sample}.SNPsplit_report.yaml",
rep2 = "allelic_bams/{sample}.SNPsplit_sort.yaml"
rep1 = "allelic_bams/{sample}.filtered.SNPsplit_report.yaml",
rep2 = "allelic_bams/{sample}.filtered.SNPsplit_sort.yaml"
log: "allelic_bams/logs/{sample}.snp_split.log"
params:
pairedEnd = '--paired' if pairedEnd else '',
Expand Down
4 changes: 2 additions & 2 deletions snakePipes/shared/rules/multiQC.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def multiqc_input_check(return_value):
infiles.append( expand("Qualimap_qc/{sample}.filtered.bamqc_results.txt", sample = samples) )
indir += " Qualimap_qc "
if "allelic-mapping" in mode:
infiles.append( expand("allelic_bams/{sample}.SNPsplit_report.yaml", sample = samples) )
infiles.append( expand("allelic_bams/{sample}.SNPsplit_sort.yaml", sample = samples) )
infiles.append( expand("allelic_bams/{sample}.filtered.SNPsplit_report.yaml", sample = samples) )
infiles.append( expand("allelic_bams/{sample}.filtered.SNPsplit_sort.yaml", sample = samples) )
indir += "allelic_bams"
elif pipeline=="rna-seq":
# must be RNA-mapping, add files as per the mode
Expand Down

0 comments on commit c3fd12a

Please sign in to comment.