modified: myjupyterlab.sh
[GalaxyCodeBases.git] / BioInfo / BS-Seq / bwa-meth / example / README.md
blob0c8605873dd49c98bab08cc7c91117372bfe782e
1 These commands can be run from this directory once `bwa-meth` is installed
3 1. Index The Reference.
4 2. Align the Reads.
6 ```Shell
8 # rm ref.fa.bwameth.* 
9 bwameth.py index ref.fa
10 bwameth.py --reference ref.fa t_R1.fastq.gz t_R2.fastq.gz -t 12 | samtools view -b - > bwa-meth.bam
12 ```
14 Then check the alignments:
16 ```Shell
17 samtools flagstat bwa-meth.bam
18 ```
20     92791 + 0 in total (QC-passed reads + QC-failed reads)
21     0 + 0 duplicates
22     92723 + 0 mapped (99.93%:nan%)
23     92791 + 0 paired in sequencing
24     46399 + 0 read1
25     46392 + 0 read2
26     92276 + 0 properly paired (99.44%:nan%)
27     92652 + 0 with itself and mate mapped
28     71 + 0 singletons (0.08%:nan%)
29     0 + 0 with mate mapped to a different chr
30     0 + 0 with mate mapped to a different chr (mapQ>=5)
33 From here, it is recommended to use [PileOMeth](https://github.com/dpryan79/PileOMeth) for extraction and tabulation of the methylation.