Entering edit mode
7.8 years ago
flight22121
▴
10
What software tools can merge FASTQs and BAMs (SAMs) separately?
Tried only SAMTools for BAMs
What software tools can merge FASTQs and BAMs (SAMs) separately?
Tried only SAMTools for BAMs
Picard tools has a number of tools for merging SAM/BAM/CRAM including MergeSamFiles (samtools merge equivalent) as well as more specialised merging such as MergeBamAlignment and GatherBamFiles.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
you should be able to
cat
fastq files together on unix. Since you are working on Windows you may not have an easy native option forcat
.Merging two fastq files
merge large amount of fastq files into a single one
With windows 10 and its bash op could either use cat with that or https://stackoverflow.com/questions/60244/is-there-replacement-for-cat-on-windows .