-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add inputs and expected outputs for testing the vector short read alignment pipeline #9
Add inputs and expected outputs for testing the vector short read alignment pipeline #9
Conversation
That's great, thank you Alistair! Just to confirm - would these bams be the output after |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good - thanks for pointing to the FASTQs.
Yes, that sounds good @kbergin |
That's right.
Yes that might be a light way to check if the outputs are similar or not. |
I left a comment on the original issue, but I'll also leave a comment on this pull request as well: There are some possible gotchas when comparing realigned bams from cromwell/WDL pipelines with legacy realigned bams: The mosquito legacy pipelines would use the bedtools bam2fastq v1.1.0 binary to convert bam to fastq. https://github.com/wtsi-team112/vr-pipe/blob/master/modules/VRPipe/Steps/bam_to_fastq.pm They would also shuffle the alignments in the bams before converting to fastq and realigning. https://github.com/wtsi-team112/vr-pipe/blob/master/modules/VRPipe/Steps/bam_shuffle_by_name.pm The original reasons are lost to the departed bioinformaticists, but presumably it was done to remove any bias during remapping while calculating insert size. In older aligners, the earlier paired reads in the fastq would dictate the insert size. See https://gatkforums.broadinstitute.org/gatk/discussion/2908/howto-revert-a-bam-file-to-fastq-format and http://seqanswers.com/forums/archive/index.php/t-38985.html. I am not sure if bam reshuffling is still necessary, but it is something to watch out for when we are comparing realigned bams from the test pipelines with legacy realigned bams. |
Thanks for highlighting this @tnguyensanger ! |
This PR brings in two tab-delimited files to provide links to test inputs and expected outputs for the vector short read alignment pipeline. The files are:
pipelines/short-read-alignment-vector/fixtures/ag1000g-phase1-minimal/lanelets.tsv
- this has six lanelets for two samples, including URLs for data on ENA as fastqpipelines/short-read-alignment-vector/fixtures/ag1000g-phase1-minimal/expected_outputs.tsv
- this has links to two analysis-read bam files for the same two samples, produced previously using the previous vr-pipe implementation of the pipelineResolves #6.