Changes between Version 2 and Version 3 of SnpCallingPipeline
- Timestamp:
- Sep 12, 2010 11:38:01 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SnpCallingPipeline
v2 v3 12 12 13 13 This process involves all needed steps to prepare the raw sequencing reads for an alignment using BWA. These steps are all conducted using PICARD. An overview of the steps can be found in Appendix A. 14 15 14 === 1) Read converting === 16 15 17 16 This step involves converting the output from the Illumina GAII, FASTQ format, to binary SAM format (BAM). To do this !FastqToSam.jar can be used. The following command was used: 18 17 18 {{{ 19 19 java -jar !FastqToSam.jar FASTQ=../testrun/s_2_sequence041090.txt QUALITY_FORMAT=Illumina OUTPUT=../testrun/s_2_sequence.bam SAMPLE_NAME=s_2_test_sample PLATFORM_UNIT=barcode_13434HWUSIsomething PLATFORM=illumina SORT_ORDER=coordinate 20 }}} 20 21 21 22 It is also possible to convert raw BUSTARD data to BAM using !BustardToSam.jar. The advantage of this tool is the multiple lane input, in theory all lanes from one flow cell can be converted parallel. To remove possible linkers from reads a tool named !ExtractIlluminaBarcodes.jar can be used. Since there isn’t any data including these barcodes this and the !BustardToSam haven’t been tested yet.