Skip to content

Commit

Permalink
read name extension issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekbhr committed Nov 14, 2017
1 parent 70ca0b3 commit 977fc58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shared/rules/hicexplorer.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ rule map_fastq_single_end:
if(RF_resolution is True):
rule build_matrix:
input:
R1 = "BWA/{sample}_R1.bam",
R2 = "BWA/{sample}_R2.bam",
R1 = "BWA/{sample}"+reads[0]+".bam",
R2 = "BWA/{sample}"+reads[1]+".bam",
bed = enzyme + ".bed"
output:
matrix = "HiC_matrices/{sample}_"+matrixFile_suffix+".h5",
Expand Down Expand Up @@ -58,8 +58,8 @@ if(RF_resolution is True):
else:
rule build_matrix:
input:
R1 = "BWA/{sample}_R1.bam",
R2 = "BWA/{sample}_R2.bam"
R1 = "BWA/{sample}"+reads[0]+".bam",
R2 = "BWA/{sample}"+reads[1]+".bam"
output:
matrix = "HiC_matrices/{sample}_"+matrixFile_suffix+".h5",
bam = "BWA/{sample}_R12_"+matrixFile_suffix+".bam"
Expand Down

0 comments on commit 977fc58

Please sign in to comment.