This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>com.tuntap.tun.kext</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>kextload</string> | |
| <string>/Library/Extensions/tun.kext</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Operating Systems Fall 2013, Lab 2. 15 October 2013 | |
| Lior Galanti lior.galanti@nyu.edu N14314920 | |
| */ | |
| #include <ctype.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Operating Systems Fall 2013, Lab 3. 10 November 2013 | |
| Lior Galanti lior.galanti@nyu.edu N14314920 | |
| */ | |
| #include <ctype.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Operating Systems Fall 2013, Lab 4. 9 December 2013 | |
| Lior Galanti lior.galanti@nyu.edu N14314920 | |
| */ | |
| #include <ctype.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Operating Systems Fall 2013, Lab 1. 23 september 2013 | |
| Lior Galanti lior.galanti@nyu.edu N14314920 | |
| */ | |
| #define BUFFER_SIZE 2048 | |
| #define SYMBOL_SIZE 16 | |
| #define INSTR_SIZE 16 | |
| #define MEM_ADDR 16 | |
| #define DEFLIST_SIZE 16 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| FASTQ Demultiplexer | |
| Author: Lior Galanti lior.galanti@nyu.edu | |
| Build: | |
| On ubuntu: | |
| dependencies: sudo apt-get install lib32z1-dev libboost-iostreams-dev libboost-program-options-dev | |
| compile: g++ -static phenaqs.cpp -lboost_iostreams -lboost_program_options -lz -std=c++11 -o phenaqs | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # recursive fastq reference resolver for cleaning up the scratch file system | |
| # Author: Lior Galanti < lior.galanti@nyu.edu > | |
| # NYU Center for Genetics and System Biology 2015 | |
| import sys | |
| import re | |
| import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "A": "T", | |
| "C": "G", | |
| "G": "C", | |
| "T": "A", | |
| "R": "Y", | |
| "Y": "R", | |
| "K": "M", | |
| "M": "K", | |
| "S": "S", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # Reverse complement an IUPAC encoded DNA string | |
| # Author: Lior Galanti < lior.galanti@nyu.edu > | |
| # NYU Center for Genetics and System Biology 2015 | |
| # | |
| # complement is free software; you can redistribute it and/or modify it under the terms of | |
| # the GNU General Public License as published by the Free Software Foundation; | |
| # either version 2 of the License, or (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # Extract a sequence by coordinates from a FASTA file | |
| # Author: Lior Galanti < lior.galanti@nyu.edu > | |
| # NYU Center for Genetics and System Biology 2015 | |
| # | |
| # crop is free software; you can redistribute it and/or modify it under the terms of | |
| # the GNU General Public License as published by the Free Software Foundation; | |
| # either version 2 of the License, or (at your option) any later version. |