We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FYI, the samtools view is not needed since version 1.3 (or earlier possibly)
java -jar build/libs/bazam.jar -bam my.bam | \ bwa mem -p ref.fa - | \ samtools view -bSu - | \ samtools sort -o out.bam
Can be done as:
java -jar build/libs/bazam.jar -bam my.bam | \ bwa mem -p ref.fa - | \ samtools sort > out.bam
Much speed can be gained by using sort --threads X and --memory Xm too.
sort --threads X and --memory Xm
The text was updated successfully, but these errors were encountered:
Thanks - will update docs!
Sorry, something went wrong.
No branches or pull requests
FYI, the samtools view is not needed since version 1.3 (or earlier possibly)
Can be done as:
Much speed can be gained by using
sort --threads X and --memory Xm
too.The text was updated successfully, but these errors were encountered: