Skip to content

Commit e479c42

Browse files
authoredOct 22, 2018
fixed merged line error
1 parent ae94527 commit e479c42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎stable/XR-seq-basics.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ To analyze the data, carry out the following steps.
8888
8989
* Then, generate bedgraph files by typing the following:
9090
```
91-
bedtools genomecov -i ${SAMPLE}_cutadapt_sorted_plus.bed -g ${GENOME_DIR}/genome.fa.fai -bg -scale $(cat ${SAMPLE}_cutadapt_sorted_readCount.txt |
92-
awk '{print 1000000/$1}') >${SAMPLE}_cutadapt_sorted_plus.bdg > bedtools genomecov -i ${SAMPLE}_cutadapt_sorted_minus.bed -g ${GENOME_DIR}/genome.fa.fai -bg -scale $(cat ${SAMPLE}_cutadapt_sorted_readCount.txt | awk '{print -1000000/$1}') >${SAMPLE}_cutadapt_sorted_minus.bdg
91+
bedtools genomecov -i ${SAMPLE}_cutadapt_sorted_plus.bed -g ${GENOME_DIR}/genome.fa.fai -bg -scale $(cat ${SAMPLE}_cutadapt_sorted_readCount.txt | awk '{print 1000000/$1}') >${SAMPLE}_cutadapt_sorted_plus.bdg
92+
bedtools genomecov -i ${SAMPLE}_cutadapt_sorted_minus.bed -g ${GENOME_DIR}/genome.fa.fai -bg -scale $(cat ${SAMPLE}_cutadapt_sorted_readCount.txt | awk '{print -1000000/$1}') >${SAMPLE}_cutadapt_sorted_minus.bdg
9393
```
9494
9595
* Generate BigWig files

0 commit comments

Comments
 (0)
Please sign in to comment.