1 / 9

B iological S cripting L anguage

BSL. B iological S cripting L anguage. Jared Eng Jay Kota Igor Marfin Amna Qaiser. Background / Overview. Sequence handling DNA, RNA, amino acid etc… Nucleotides A, C, G, T, U, F, L, S, Y, C, etc … Sizeable number Massive amounts. BSL Functionality.

oni
Download Presentation

B iological S cripting L anguage

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. BSL B iological S cripting L anguage Jared Eng Jay Kota Igor Marfin Amna Qaiser

  2. Background / Overview • Sequence handling • DNA, RNA, amino acid etc… • Nucleotides • A, C, G, T, U, F, L, S, Y, C, etc … • Sizeable number • Massive amounts

  3. BSL Functionality • Specializes in sequence manipulation, translation, and analysis • Methods • Access • Search • Align • Map • Translate

  4. Sample Script /* Here is a test script */ start method int TestMethod (Sequence a, Sequence b) Print: a, “myfile.txt”; return 0; end method; new Sequence dnaSeq1 type DNA = “AGGGAACCTT”; new Sequence dnaSeq2 type DNA = “AGGAACTC”; new int dnaSum; dnaSum = TestMethod: dnaSeq1, dnaSeq2; Print: dnaSum; /* End script */

  5. Syntax and Semantics • Primitives and BSL objects (int vs Sequence) • Sequence has “type” associated with it • Properties: length, type, value • Method calls: Align: Sequence, Sequence; • User defined methods (Overloading)

  6. Architecture Overview • Used ANTLR • Invoke using java BSL_TreeParser <file> • Input: .bsl file • Outputs java file and compiles the file

  7. BSL Implementation • Method symbol tables • Java Classes handle method calls • Align is taken care of by Aligner • Uses Smith-Waterman Algorithm • Approach to implementation • Modularity allowed for faster coding time • Easier testing

  8. Testing Plan • Phase I • BSL Libraries • Lexer and Parser (Grammar) • Phase II • Code Generator • Combined Testing

  9. Lessons and Future Goals • Start early • Keep minutes • Stay focused • Incorporate more algorithms • Access online databases • Make millions and retire early

More Related