Friday, October 12, 2012

Professional Development

Dr. Sora Kim gave an excellent seminar on professional development in academia today and you can view the PDF on her website at the following link - http://geofaculty.uwyo.edu/skim11/Updates/Entries/2012/10/11_Building_a_Professional_Network.html.

I'll write a more extensive post about this soon!

Friday, October 5, 2012

Graduate School Part I

I have had a few inquiries from some undergraduate friends about applying for graduate school. I thought I would publish some advice here but also open up the comments to anyone who has further advice or competing views.

Many undergraduates are concerned about the fact that they don't have straight A's. Well, it's no big secret, but neither did I (at least for my entire program)! I did "okay" in first year but just scraped by in my second (by the skin of my teeth! Okay, teeth don't have skin, but you know what I mean). The good news is that biology programs normally only consider your last two years (or equivalent number of courses). You should always check with the program you're interested in, but many seem comparable. So if you're entering your third year and a little disappointed with your first two, you'll be just fine.

I also don't think straight A's necessarily make a good researcher. Does the ability to memorize thousands of facts make you a critical thinker? It might get you good grades but it won't help you design a relevant and interesting research project. This is not to say that all people with straight A's merely memorize facts (please, no angry comments!). All I am saying is that the person with the B+ average and the person with the A+ average may not be so different when it comes time for grad school. It all depends on personal characteristics that are at least partially independent of grades. Some important qualities that successful students possess are self motivation, competitiveness (healthy competitiveness!), and passion (not like a romance novel!).

Firstly, self motivation is important because no one is going to be there prodding you to finish your experiment. When your yearly committee meeting rolls around and you haven't made any progress, there will be no one to blame but yourself. You have to be good at setting goals and meeting them. I use two levels of goal setting. The first are long-term goals. For example, "I will submit paper A by January." The second are short-term goals. For example, "Today, I will write three paragraphs of paper A." Because I am self motivated I usually meet my goals (or at least come close).

Secondly, I want to be clear about what I mean by competitiveness. I define this as the desire to excel when your goals for excellence are set by the people around you. This means feeling motivated by how well others are doing and working hard to match their successes (or maybe to do a bit better!). I am only talking about hard work and not about immoral means of competing with others (purposely scooping their research, "bad mouthing" them, or sabotaging experiments). These are all unacceptable and place you into the category of ruthless rather than competitive.

I suspect there is a near linear relationship of healthy competitiveness with number of publications and number of scholarships. Publications and scholarships (in addition to experience and interesting research) are good determinants of future success (jobs, more scholarships) assuming they are of good quality. Of course, there may be exceptions to this "rule."

Finally, you have to be passionate about your research. If you are passionate you are most likely also self motivated and competitive. I think very positively about my research and am always generating new ideas. I wake up in the morning and immediately start thinking about science. But I don't want to be unrealistic. Every day will not be positive! Experiments fail and equipment breaks, but if it doesn't stop you from wanting to pursue research, then you're on the right track!

Part II will cover choosing a supervisor and a university.


Monday, October 1, 2012

A Brief Introduction to Testing for Phylogenetic Signal in Comparative Data

Phylogenetic comparative methods (PCMs) were the subject of my last post. You can read it here (http://evolbiology.blogspot.ca/2012/09/phylogenetic-comparative-methods-some.html). It was a VERY brief description of two commonly employed PCMs (Phylogenetically Independent Contrasts and Phylogenetic Generalized Least Squares Regression). However, it is important to note that PCMs should not be applied unless their use is justified. It's true that the availability of phylogenies and the array of methods for reconstructing phylogenies has skyrocketed. As a result, reviewers are suggesting PCMs more and more. But it is important to consider whether PCMs are necessary and whether they add to your analysis or aid in the interpretation of your data. But how can you determine if your study needs PCMs?

One of the questions to ask is whether your data (rather the residuals; Revell 2010) are phylogenetically structured. In other words, do your data show phylogenetic signal? Two common methods are the K statistics of Blomberg et al. (2003) and Pagel's lambda (Pagel, 1999). The K statistic compares the observed and expected variance for calculated independent contrasts (Blomberg et al. 2009; Glor, 2009). Pagel's lambda is a multiplier of the off diagonal elements of the covariance matrix that varies between 0 and 1. Lambda transforms the phylogenetic tree with the purpose of comparing a complete lack of phylogenetic structure (lambda = 0; star phylogeny) to the untransformed topology and branch lengths of your original tree (lambda = 1) (Pagel, 1999; Gor, 2009). In other words, Pagel's lambda determines which situation, a star or structured phylogeny, fits your data best.

Here is some basic R code for using Blomberg et al.'s K:

require(picante)
# Help file http://127.0.0.1:17385/library/picante/html/phylosignal.html
kstat<-phylosignal(data,tree) 
# Your data must have matching taxon names or be sorted in the same order as the tip labels of the phylogeny
# This will return the K statistics and p value (as well as the variance of the independent contrasts and the associated z value)

Here is some basic R code for using Pagel's lambda:

require(phytools)
# Help file http://127.0.0.1:17385/library/phytools/html/phylosig.html
lamb<- phylosig(tree,data,method="lambda")
# Your data also require names that match the tip labels on the tree
# This will return a lambda value and log likelihood, values of lambda closer to 1 indicate singificant phylogenetic signal

Using the K statistic and Pagel's lambda, you can justify the use of PCMs or demonstrate that they are not necessary. Although I feel strongly that PCMs are powerful tools in comparative studies, I also feel they should only be used when it is statistically justifiable to do so.

You can follow the instructions of Glor (2009) to further understand Pagel's lambda. There are also other methods for testing for phylogenetic signal that I have not covered here.

References

Blomberg, S. P., T. Garland, Jr., and A. R. Ives. 2003. Testing for phylogenetic signal in comparative data: behavioral traits are more labile. Evolution 57:717-745.

Glor. 2009. IV. Testing Phylogenetic Signal in R. Bodega Phylogenetics Wiki.

Pagel, M. 1999. Inferring the historical patterns of biological evolution. Nature, 401, 877–884.

Revell, L. J. 2010. Phylogenetic signal and linear regression on species data. Methods in Ecology and Evolution 1:319-329.