If its a non-personal question about stats, can I ask you to use the discussion board

TLDR: Use the discussion board on blackboard, if it is not an issue that requires confidentiality. You've received this link because you emailed me a questions about statistics and R in BS1040/BS1070/MB1080 or BS2004 by email. As stated at the start of the course, its not productive for me to answer questions by email. Rather … Continue reading If its a non-personal question about stats, can I ask you to use the discussion board

Downloading Fasta/q files straight from EBI

If you are conducting a bioinformatics project using publically available data you will need to download the relevant data. The common approach is to use SRA tools kit from NCBI. This has several problems, the first of which is that it has several steps that can go wrong and therefore result in your data being … Continue reading Downloading Fasta/q files straight from EBI

Converting .pdf to .tif in Ubuntu

To submit to Evolution Letters (and maybe other journals), you need to submit your figures as .tif or .eps files with 300dpi resolution. To convert .pdf to .tif on Ubuntu (Linux). sudo apt-get install imagemagick gs -q -dNOPAUSE -r300x300 -sDEVICE=tiff24nc -sOutputFile=output.tif input.pdf -c quit Turns out these files are huge and the submission system has … Continue reading Converting .pdf to .tif in Ubuntu

Outline of first year data analysis course

This outline is mainly for people who aren't first year undergrads at Leicester, but who might be interested in using this course to improve their data analysis or get a taste for R. There are mini lectures and associated practical sessions. The lectures slides might not make sense by themselves, but will give you an … Continue reading Outline of first year data analysis course

Going from a list of accession numbers to a formatted latex table

I just want to highlight two packages in R that really do something useful. mygene (https://bioconductor.org/packages/release/bioc/html/mygene.html) takes a list of accession numbers and gets back genbank records. This is something I'm always doing. There are probably lots of good ways of doing this. xtable (https://cran.r-project.org/web/packages/xtable/index.html) is a bit more unique. It can take an R … Continue reading Going from a list of accession numbers to a formatted latex table