Changes between Version 5 and Version 6 of SOPs/coordinates
- Timestamp:
- 10/02/18 12:48:44 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/coordinates
v5 v6 63 63 64 64 === Convert bam to bigwig === 65 66 Method 1: Single-base resolution 65 67 {{{ 66 68 Step1: convert bam to bedGraph format: … … 71 73 where mm9.size file is tab delimited and structured as follows: 72 74 <chromName><TAB><chromSize> 75 }}} 76 Method 1: Resolution of desired window size (after creating windows across genome) 77 {{{ 78 coverageBed -a Human.hg19.1000.500.bed -b Sample_1.sorted.bam | cut -f1-4 > Sample_1.1000.500.coverage.bedgraph 73 79 }}} 74 80