Heads up:
- Dual boot FreeBSD 13.0 RELEASE and Windows 10 was tested in a VirtualBox virtual Machine (VM).
- Only works with legacy BIOS boot and MBR partition scheme.
- UEFI boot and/or GPT partition scheme not tested.
2021-09-25 Jackie
| # Note: using the devel versions of both packages! | |
| library(DESeq) # version 1.9.11 | |
| library(edgeR) # version 2.99.8 | |
| library(VennDiagram) | |
| # Read in data ------------------------------------------------------------ | |
| ## Use pasilla data | |
| datafile = system.file( "extdata/pasilla_gene_counts.tsv", package="pasilla" ) | |
| datafile |
Heads up:
2021-09-25 Jackie
| #!/bin/sh | |
| # Speed up boot slightly | |
| sysrc background_dhclient=YES | |
| sysrc -f /boot/loader.conf autoboot_delay=3 | |
| # Quieten boot messages | |
| sysrc rc_startmsgs=NO | |
| sysrc -f /boot/loader.conf boot_mute=YES | |
| sysrc -f /boot/loader.conf beastie_disable=YES |