Bwa 7.5: Difference between revisions

From HPCwiki
Jump to navigation Jump to search
No edit summary
Line 7: Line 7:
<source lang='tcl'>
<source lang='tcl'>
#%Module1.0#######################################################################
#%Module1.0#######################################################################
## bwa 0.5.9 modulefile
## bwa 0.7.5a modulefile
##
##
proc ModulesHelp { } {
proc ModulesHelp { } {


         puts stderr "\tAdds bwa v0.5.9 to your environment"
         puts stderr "\tAdds bwa v0.7.5a to your environment"
}
}


module-whatis  "Adds bwa v0.5.9 to your environment"
module-whatis  "Adds bwa v0.7.5a to your environment"


set            bwa_059_root       /cm/shared/apps/WUR/ABGC/bwa/bwa-0.5.9/
set            bwa_075a_root       /cm/shared/apps/WUR/ABGC/bwa/bwa-0.7.5a
 
prepend-path    PATH            $bwa_075a_root


prepend-path    PATH            $bwa_059_root


</source>
</source>

Revision as of 11:43, 21 December 2013

BWA is a short read aligner designed by Heng Li and currently the most widely used aligner for re-sequencing analysis.

Module file

The module file can be found in this location:

 /cm/shared/apps/WUR/ABGC/modulefiles

<source lang='tcl'>

  1. %Module1.0#######################################################################
    1. bwa 0.7.5a modulefile

proc ModulesHelp { } {

       puts stderr "\tAdds bwa v0.7.5a to your environment"

}

module-whatis "Adds bwa v0.7.5a to your environment"

set bwa_075a_root /cm/shared/apps/WUR/ABGC/bwa/bwa-0.7.5a

prepend-path PATH $bwa_075a_root


</source>

See also

External links