You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
MSCRM is a reference-based read-mapper which performs ungapped alignment ofsample reads on reference sequence.
Compiling from Source
The application is written in Java 11 and built as a Maven project. To build fromsource, simply runmvn package on the main directory, which compiles and buildsthe Java project, producing an artifact undertarget/mapper-1.0-jar-with-dependencies.jar.
While building the project, Maven runs provided JUnit tests to ensure that allunit-tests pass before producing the artifact. All unit-tests can be foundundersrc/test/java/ directory.
All source code can be found undersrc/main/java/edu/rice/comp416/mapper/directory.
Requirements
Java JRE >=11.0.12
Apache Maven >=3.8.2
Command Syntax
java -jar target/mapper-1.0-jar-with-dependencies.jar [OPTIONS] REF SAMPLE SAMPLE OUT
Required Arguments
REF is the pathname (absolute or relative) to the reference fastq file
SAMPLE is the pathname (absolute or relative) to the sample fasta file
OUT is the pathname (absolute or relative) to the output sam file