- Ubuntu Server 16.04.4 LTS AMD64
- Disk Size: 80GiB
- Number of Disks: 2
- LVM: YES
- RAID: RAID1
- Partition Table Format: MBR
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
| # This puts all files in one partition. You'll need to change proxy settings | |
| # (USERNAME, PASSWORD, PROXYSERVER) and crypted passwords, as well as the | |
| # get_domain string to your dns domain. | |
| # This is not quite fully automatic. It will prompt you for hostname. If you | |
| # want to automatically fill in the hostname you'll need to provide it in the | |
| # kernel APPEND line by saying netcfg/get_hostname=hostname | |
| # If you've never setup preseeding, the first step is going to be getting PXE | |
| # netinstall working. You don't need a full CD, you just need netboot/debian-installer/amd64/linux |
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
| (* | |
| * New-iTerm-Window.scpt | |
| * | |
| * Intended for use with QuickSilver | |
| * I mapped option-y to running this script to create | |
| * a new iTerm window on the current workspace | |
| * | |
| * Based on much Googling - very little "original" code here | |
| * Comments/Suggestions to [email protected] | |
| *) |
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 perl | |
| # | |
| # convert cufflinks GTF into a Augustus hintfile | |
| # | |
| # seq source ep|exon|intron start stop score +/- phase grp=ID; src=E | |
| my %transcripts; | |
| while(<>){ | |
| next unless /Cufflinks\s+exon.*transcript_id/; |
NewerOlder