Skip to content

Commit

Permalink
added some alignment diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
vsbuffalo committed Jun 29, 2012
1 parent eb23f7a commit d72acda
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Expand Up @@ -81,3 +81,14 @@ script to allow this to be parallelizable.

I am using `-N1` with `gsnap`, which allows for novel
splicing. `gsnap` also allows for known splicing junctions to be used.

## Converting SAM files to BAM files

Another task for `xargs`. As before, I use basename to keep just the
unique file name as a key, and run `samtools` with the correct
directory and extension. This allows me to change the extension too.

find data/alignments/ -name "*sam" | xargs -n1 -I{} basename {} .sam | xargs -n1 -I{} -P4 samtools view -b -S -o data/alignments/{}.bam data/alignments/{}.sam



2 changes: 1 addition & 1 deletion raw-read-qa.Rmd
@@ -1,4 +1,4 @@
# Raw Read Quality Assessment
# Raw and Processed Read Quality Assessment

It's extremely important to do quality assessment and improvement
steps before working with sequencing data. I highly recommend this one
Expand Down

0 comments on commit d72acda

Please sign in to comment.