This blog post explores the RDKit function ConstrainedEmbed.
Continue readingCategory Archives: Technical
A gentle primer on quantum annealing
If you have done any computational work, you must have spent some time waiting for your program to run. As an undergraduate, I expected computational biology to be all fun and games: idyllic hours passing time while the computer works hard to deliver results… well, very different from the more typical frenetically staring at the computer, wishing the program would run faster. But there is more — there are some problems that are so intrinsically expensive that, even if you had access to all the computers on Earth, it would take more than your lifetime to solve a slightly non-trivial case of them. Some examples are full configuration interaction calculations in quantum chemistry, factorisation of prime numbers, optimal planning, and a long, long, etcetera. Continue reading
Some useful tools
For my blog post this week, I thought I would share, as the title suggests, a small collection of tools and packages that I found to make my work a bit easier over the last few months (mainly python based). I might add to this list as I find new tools that I think deserve a shout-out.
Biopandas
Reading in .pdb files for processing and writing your own parser (while being a good exercise to familiarize yourself with the format) is a pain and clutters your code with boilerplate.
Luckily for us, Sebastian Raschka has written a neat package called biopandas [1] which enables quick I/O of .pdb files via the pandas DataFrame class.
Continue readingMaking the most of your CPUs when using python
Over the last decade, single-threaded CPU performance has begun to plateau, whilst the number of logical cores has been increasing exponentially.
Like it or loathe it, for the last few years, python has featured as one of the top ten most popular languages [tiobe / PYPL]. That being said however, python has an issue which makes life harder for the user wanting to take advantage of this parallelism windfall. That issue is called the GIL (Global Interpreter Lock). The GIL can be thought of as the conch shell from Lord of the Flies. You have to hold the conch (GIL) for your thread to be computed. With only one conch, no matter how beautifully written and multithreaded your code, there will still only be one thread will be executed at any point in time.
Graph-based Methods for Cheminformatics
In cheminformatics, there are many possible ways to encode chemical data represented by small molecules and proteins, such as SMILES, fingerprints, chemical descriptors etc. Recently, utilising graph-based methods for machine learning have become more prominent. In this post, we will explore why representing molecules as graphs is a natural and suitable encoding. Continue reading
Automated testing with doctest
One of the ways to make your code more robust to unexpected input is to develop with boundary cases in your mind. Test-driven code development begins with writing a set of unit tests for each class. These tests often includes normal and extreme use cases. Thanks to packages like doctest
for Python, Mocha and Jasmine for Javascript etc., we can write and test codes with an easy format. In this blog post, I will present a short example of how to get started with doctest in Python. N.B. doctest
is best suited for small tests with a few scripts. If you would like to run a system testing, look for some other packages!
So, you are interested in compound selectivity and machine learning papers?
At the last OPIG meeting, I gave a talk about compound selectivity and machine learning approaching to predict whether a compound might be selective. As promised, I hereby provide a list publications I would hand to a beginner in the field of compound selectivity and machine learning. Continue reading
Maps are useful. But first, you need to build, store and read a map.
Recently we embarked on a project that required the storage of a relatively big dictionary with 10M+ key-value pairs. Unsurprisingly, Python took over two hours to build such dictionary, taking into accounts all the time for extending, accessing and writing to the dictionary, AND it eventually crashed. So I turned to C++ for help.
In C++, map is one of the ways you can store a string-key and an integer value. Since we are concerned about the data storage and access, I compared map
and unordered_map
.
unordered_map
stores a hash table of the keys and the mapped value; while a map
is ordered. The important consideration here includes:- Memory:
map
does not have the hash table and is therefore smaller than anunordered_map
. - Access: accessing an
unordered_map
takes O(1) while accessing amap
takes log(n).
map
, because it is more memory efficient considering the small RAM size that I have access to. However, it still takes up about 8GB of RAM per object during its runtime (and I have 1800 objects to run through, each building a different dictionary). Saving these seems to open another can of worm.Storing your stuff with clever filesystems: ZFS and tmpfs
The filesystem is a a critical component of just about any operating system, however it’s often overlooked. When setting up a new server, the default filesystem options are often ticked and never thought about again. However, there exist a couple of filesystems which can provide some extraordinary features and speed. I’m talking about ZFS and tmpfs.
ZFS was originally developed by Oracle for their Solaris operating system, but has now been open-sourced and is freely available on linux. Tmpfs is a temporary file system which uses system memory to provide fast temporary storage for files. Together, they can provide outstanding reliability and speed for not very much effort.
Hard disk capacity has increased exponentially over the last 50 years. In the 1960s, you could rent a 5MB hard disk from IBM for the equivalent of $130,000 per month. Today you can buy for less than $600 a 12TB disk – a 2,400,000 times increase.
As storage technology has moved on, the filesystems which sit on top of them ideally need to be able to access the full capacity of those ever increasing disks. Many relatively new, or at least in-use, filesystems have serious limitations. Akin to “640K ought to be enough for anybody”, the likes of the FAT32 filesystem supports files which are at most 4GB on a chunk of disk (a partition) which can be at most 16TB. Bear in mind that arrays of disks can provide a working capacity of many times that of a single disk. You can buy the likes of a supermicro sc946ed shelf which will add 90 disks to your server. In an ideal world, as you buy bigger disks you should be able to pile them into your computer and tell your existing filesystem to make use of them, your filesystem should grow and you won’t have to remember a different drive letter or path depending on the hardware you’re using.
ZFS is a 128-bit file system, which means a single installation maxes out at 256 quadrillion zettabytes. All metadata is allocated dynamically so there isn’t the need to pre-allocate inodes and directories can have up to 2^48 (256 trillion) entries. ZFS provides the concept of “vdevs” (virtual devices) which can be a single disk or redundant/striped collections of multiple disks. These can be dynamically added to a pool of vdevs of the same type and your storage will grow onto the fresh hardware.
A further consideration is that both disks of the “spinning rust” variety and SSDs are subject to silent data corruption, i.e. “bit rot”. This can be caused by a number of factors even including cosmic rays, but the consequence is read errors when it comes time to retrieve your data. Manufacturers are aware of this and buried in the small print for your hard disk will be values for “unrecoverable read errors” i.e. data loss. ZFS works around this by providing several mechanisms:
- Checksums for each block of data written.
- Checksums for each pointer to data.
- Scrub – Automatically validates checksums when the system is idle.
- Multiple copies – Even if you have a single disk, it’s possible to provide redundancy by setting a copies=n variable during filesystem creation.
- Self-healing – When a bad data block is detected, ZFS fetches the correct data from a redundant copy and replaces it with the correct data.
An additional bonus to ZFS is its ability to de-duplicate data. Should you be working with a number of very similar files, on a normal filesystem, each file will take up space proportional to the amount of data that’s contained. As ZFS keeps checksums of each block of data, it’s able to determine if two blocks contain identical data. ZFS therefore provides the ability to have multiple pointers to the same file and only store the differences between them.
ZFS also provides the ability to take a point in time snapshot of the entire filesystem and roll it back to a previous time. If you’re a software developer, got a package that has 101 dependencies and you need to upgrade it? Afraid to upgrade it in case it breaks things horribly? Working on code and you want to roll back to a previous version? ZFS snapshots can be run with cron or manually and provide a version of the filesystem which can be used to extract previous versions of overwritten or deleted files or used to roll everything back to a point in time when it worked.
Similar to deduplication, a snapshot won’t take up any disk extra space until the data starts to change.
The other filesystem worth mentioning is tmpfs. Tmpfs takes part of the system memory and turns it into a usable filesystem. This is incredibly useful for systems which create huge numbers of temporary files and attempt to re-read them. Tmpfs is also just about as fast as a filesystem can be. Compared to a single SSD or a RAID array of six disks, tmpfs blows them out of the water speed wise.
Creating a tmpfs filesystem is simple:
First create your mountpoint for the disk:
mkdir /mnt/ramdisk
Then mount it. The options are saying make it 1GB in size, it’s of type tmpfs and to mount it at the previously created mount point:
mount –t tmpfs -o size=1024m tmpfs /mnt/ramdisk
At this point, you can use it like any other filesystem:
df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 218G 128G 80G 62% / /dev/sdb1 6.3T 2.4T 3.6T 40% /spinnyrust tank 946G 3.5G 942G 1% /tank tmpfs 1.0G 391M 634M 39% /mnt/ramdisk
Measuring correlation
Correlation is defined as how close two variables are to having a dependence relationship with each other. At first sight, it looks kind of simple, but there are two main problems:
- Despite the obvious situations (i.e. correlation = 1), it is difficult to say whether 2 variables are correlated or not (i.e correlation = 0.7). For instance, would you be able to say if the variables X and Y from the following to plots are correlated?
- There are different ways of measure of correlation that may not agree when comparing different distributions. As an example, which plot shows a higher correlation? The answer will depend on how you do measure the correlation since if you use Pearson correlation, you would pick A whereas if you choose Spearman correlation you will take B
Here, I will explain some of the different correlation measures you can use:
Pearson product-moment correlation coefficient
- What does it measure? Only linear dependencies between the variables.
- How it is obtained? By dividing the covariance of the two variables by the product of their standard deviations. (It is defined only if both of the standard deviations are finite and nonzero).
- Properties:
- ρ (X,Y) = +1 : perfect direct (increasing) linear relationship (correlation).
- ρ (X,Y) = -1 : perfect decreasing (inverse) linear relationship (anticorrelation).
- In all other cases, ρ (X,Y) indicates the degree of linear dependence between the variables. As it approaches zero there is less of a relationship (closer to uncorrelated).
- Only gives a perfect value when X and Y are related by a linear function.
- When is it useful? For the case of a linear model with a single independent variable, the coefficient of determination (R squared) is the square of r, Pearson’s product-moment coefficient.
Spearman’s rank correlation coefficient:
- What does it measure? How well the relationship between two variables can be described using a monotonic function (a function that only goes up or only goes down).
- How it is obtained? Pearson correlation between the rank values of the two variables.
Only if all n ranks are distinct integers, it can be computed using the popular formula.
Where di is the difference between the two ranks of each observation.
- Properties:
- rs (X,Y) = +1: X and Y are related by any increasing monotonic function.
- rs (X,Y) = -1: X and Y are related by any decreasing monotonic function.
- The Spearman correlation increases in magnitude as X and Y become closer to being perfect monotone functions of each other.
- When is it useful? It is appropriate for both continuous and discrete ordinal variables. It can be use for looking for non-linear dependence relationships.
Kendall’s tau coefficient
- What does it measure? The ordinal association between two measured quantities.
- How it is obtained?
Any pair of observations (xi , yi) and (xj, yj) are said to be concordant if the ranks for both elements agree. That happens if xi-xj and yi-xj have the same sign. If their sign are different, they are considered as discordant pairs
- Properties:
- τ (X,Y) = +1: The agreement between the two rankings is perfect (i.e., the two rankings are the same)
- τ (X,Y) = -1: The disagreement between the two rankings is perfect (i.e., one ranking is the reverse of the other)
- If X and Y are independent, then we would expect the coefficient to be approximately zero.
- When is it useful? It is appropriate for both continuous and discrete ordinal variables. It can be use for looking for non-linear dependence relationships.
Distance correlation:
- What does it measure? Both linear and nonlinear association between two random variables or random vectors.
- How is it obtained? By dividing the variable’s distance covariance by the product of their distance standard deviations:
The distance covariance is defined as:
Where:
where || ⋅ || denotes Euclidean norm.
- Properties:
- dCor (X,Y) = 0 if and only if the random vectors are independent.
- dCor (X,Y) = 1: Perfect dependence between the two distributions.
- dCor (X,Y) is defined for X and Y in arbitrary dimension.
- When is it useful? It is appropriate to find any kind dependence relationships between the 2 variables. Also if X and Y have different dimensions.