User:Timothee Flutre/Notebook/Postdoc/2013/12/27: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(Autocreate 2013/12/27 Entry for User:Timothee_Flutre/Notebook/Postdoc)
 
(5 intermediate revisions by the same user not shown)
Line 6: Line 6:
| colspan="2"|
| colspan="2"|
<!-- ##### DO NOT edit above this line unless you know what you are doing. ##### -->
<!-- ##### DO NOT edit above this line unless you know what you are doing. ##### -->
==Entry title==
==About organizing computer-based research==
* Insert content here...
* '''Motivation''': when starting a new project, it is very handy to ''quickly'' and ''easily'' set up a ''portable'' structure allowing the project to be ''backed-up'' on other machines, ''shared'' with collaborators and the work to be ''reproduced/replicated'' by colleagues.
* '''OS choice''': concerning computers, one usually has a preferred [https://en.wikipedia.org/wiki/Operating_system operating system]. Yet, in scientific projects where computing is an important aspect of research, the most frequent is [https://en.wikipedia.org/wiki/Linux GNU/Linux]. Thus, even if it's always good to know how to find our way on other operating systems, such as [https://en.wikipedia.org/wiki/Microsoft_Windows Microsoft Windows] and [https://en.wikipedia.org/wiki/OS_X Apple Mac OS X], I will focus in the following on GNU/Linux.


* '''GNU/Linux''': if you begin on this OS, check out the following links!
** [http://en.flossmanuals.net/command-line/index/ tutorial] on the  command-line;
** [http://www.commentcamarche.net/faq/8386-kit-de-survie-linux kit] de survie Linux;
** [http://www.ibm.com/developerworks/aix/library/au-unixtext/index.html lessons] on text manipulations;
** [http://www.tldp.org/LDP/abs/html/ book] on advanced bash scripting.
* '''Home''':
** I create a set of directories, via <code>mkdir -p bin include lib share src src_ext src_ext/Rlibs texmf tmp work</code>:
*** <code>bin</code>: contains executables;
*** <code>include</code>: contains C/C++ header files;
*** <code>lib</code>: contains C/C++ shared libraries;
*** <code>share</code>: contains documentation;
*** <code>src</code>: contains source code from my own packages;
*** <code>src_ext</code>: contains source code from external packages;
**** <code>src_ext/Rlibs</code>: for external R packages;
*** <code>texmf</code>: contains LaTeX packages;
*** <code>tmp</code>: contains temporary tasks;
*** <code>work</code>: contains projects.
** this structure is reflected in my file <code>~/.bash_profile</code>:
*** in my case, it's been necessary to specify [https://en.wikipedia.org/wiki/CFLAGS CFLAGS, CPPFLAGS and CXXFLAGS]
<nowiki>
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi
# User specific environment and startup programs
PATH=$HOME/bin:$PATH
export PATH
CFLAGS="$CFLAGS -I$HOME/include"
export CFLAGS
CPPFLAGS="$CPPFLAGS -I$HOME/include"
export CPPFLAGS
CXXFLAGS="$CXXFLAGS -I$HOME/include"
export CXXFLAGS
LDFLAGS="$LDFLAGS -L$HOME/lib"
export LDFLAGS
export R_LIBS_USER=$HOME/src_ext/Rlibs
export PYTHONPATH=$HOME/lib/python/:$PYTHONPATH
# http://perlgeek.de/en/article/set-up-a-clean-utf8-environment                                                                       
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
</nowiki>
* '''External packages''': for each external package in <code>src_ext</code>, I create a directory with its usual name, say emacs, in which I create a file <code>install.bash</code> with the necessary commands to compile and install the package, typically:
<nowiki>
#!/usr/bin/env bash
wget http://gnu.mirrors.hoobly.com/gnu/emacs/emacs-24.3.tar.gz
tar xzvf emacs-24.3.tar.gz
cd emacs-24.3
./configure --prefix=$HOME --with-x-toolkit=no --with-xpm=no --with-jpeg=no --with-gif=no --with-tiff=no
make
make install
</nowiki>
* '''Projects''':
** for each project in <code>work</code>, I create a set of directories, via <code>mkdir -p analysis doc download figures preprocessing scripts src</code>:
*** <code>analysis</code>: contains the outputs (exploratory, temporary, final) of the analyzes;
*** <code>doc</code>: contains the documentation allowing to replicate the whole project, usually as an <code>README.org</code> file;
*** <code>download</code>: contains the data sets obtained externally;
*** <code>figures</code>: contains all figures, used in the README and the manuscript;
*** <code>preprocessing</code>: contains the outputs of the preprocessing, then used to obtain outputs in <code>analysis</code>;
*** <code>scripts</code>: contains all scripts, usually used for preprocessing;
*** <code>src</code>: contains my own source code, usually used in the analyzes and not yet mature enough to be in <code>~/src</code>.
** to share my work with colleagues, I use <code>tar -czvf project.at.gz --exclude=project/download project</code>
* '''Choices''': I strive for freedom-protection (''à la'' free software), portability, longevity, robustness and modularity
** editing text: I use [http://openwetware.org/wiki/User:Timothee_Flutre/Notebook/Postdoc/2012/07/25 Emacs];
** documenting projects: I use org-mode (major argument for using Emacs);
** writing code: I start from one of my [http://openwetware.org/wiki/User:Timothee_Flutre/Notebook/Postdoc/2012/05/16 templates] for bash, Python, R and C++;
** versioning: I use [http://openwetware.org/wiki/User:Timothee_Flutre/Notebook/Postdoc/2012/08/14 git];
** developing packages: I use the [http://openwetware.org/wiki/User:Timothee_Flutre/Notebook/Postdoc/2012/11/27 Autotools];
** presenting: I use LaTeX (for papers) and Beamer (for talks), eventually LibreOffice Writer and Impress (papers and talks, respectively);
** drawing: GIMP and Inkscape.
** backup: I use <code>rsync</code>, via a script <code>backup.bash</code>:
<nowiki>
#!/usr/bin/env bash
# backup.bash <path_to_backup> >& backup.log &
date
RSYNC_OPT="--compress --recursive --times --perms --links --exclude="*~" --delete --delete-excluded --progress"
rsync $RSYNC_OPT ~/remote1/work/project1 $1
rsync $RSYNC_OPT ~/remote1/work/project2 $1
date
</nowiki>
* '''My history''': in 2006, during an internship in a bioinformatics lab, I discovered GNU/Linux. More specifically, I worked on a [https://en.wikipedia.org/wiki/Fedora_%28operating_system%29 Fedora] distribution and was able to install it on my laptop. From 2007 to 2010, during my PhD, I switched to [https://en.wikipedia.org/wiki/Debian Debian] and then [https://en.wikipedia.org/wiki/Ubuntu_%28operating_system%29 Ubuntu] for my laptop, and I used several computer clusters running with [https://en.wikipedia.org/wiki/Solaris_%28operating_system%29 Solaris] and [https://en.wikipedia.org/wiki/CentOS CentOS].
** This looks like an anthology of weird names but, fundamentally, all these distributions are more or less similar to each other and can be described as [https://en.wikipedia.org/wiki/Unix-like Unix-like systems]. Please note, however, that all these are not equivalent in terms of protecting your ''freedom''. Michael Kerrisk presents this quite well ([http://man7.org/conf/udes2012/Linux_and_Free_Software.pdf pdf]). It is indeed important to know about the difference between [https://en.wikipedia.org/wiki/GNU/Linux_naming_controversy GNU and Linux] and, for those who read the [http://www.amazon.com/dp/1451648537/ biography of Steve Jobs], I highly recommend reading the [https://en.wikipedia.org/wiki/Free_as_in_Freedom:_Richard_Stallman%27s_Crusade_for_Free_Software biography of Richard Stallman] (founder of GNU).


<!-- ##### DO NOT edit below this line unless you know what you are doing. ##### -->
<!-- ##### DO NOT edit below this line unless you know what you are doing. ##### -->

Revision as of 01:50, 7 March 2014

Project name <html><img src="/images/9/94/Report.png" border="0" /></html> Main project page
<html><img src="/images/c/c3/Resultset_previous.png" border="0" /></html>Previous entry<html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</html>

About organizing computer-based research

  • Motivation: when starting a new project, it is very handy to quickly and easily set up a portable structure allowing the project to be backed-up on other machines, shared with collaborators and the work to be reproduced/replicated by colleagues.
  • OS choice: concerning computers, one usually has a preferred operating system. Yet, in scientific projects where computing is an important aspect of research, the most frequent is GNU/Linux. Thus, even if it's always good to know how to find our way on other operating systems, such as Microsoft Windows and Apple Mac OS X, I will focus in the following on GNU/Linux.
  • GNU/Linux: if you begin on this OS, check out the following links!
    • tutorial on the command-line;
    • kit de survie Linux;
    • lessons on text manipulations;
    • book on advanced bash scripting.
  • Home:
    • I create a set of directories, via mkdir -p bin include lib share src src_ext src_ext/Rlibs texmf tmp work:
      • bin: contains executables;
      • include: contains C/C++ header files;
      • lib: contains C/C++ shared libraries;
      • share: contains documentation;
      • src: contains source code from my own packages;
      • src_ext: contains source code from external packages;
        • src_ext/Rlibs: for external R packages;
      • texmf: contains LaTeX packages;
      • tmp: contains temporary tasks;
      • work: contains projects.
    • this structure is reflected in my file ~/.bash_profile:
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs
PATH=$HOME/bin:$PATH
export PATH
CFLAGS="$CFLAGS -I$HOME/include"
export CFLAGS
CPPFLAGS="$CPPFLAGS -I$HOME/include"
export CPPFLAGS
CXXFLAGS="$CXXFLAGS -I$HOME/include"
export CXXFLAGS
LDFLAGS="$LDFLAGS -L$HOME/lib"
export LDFLAGS

export R_LIBS_USER=$HOME/src_ext/Rlibs
export PYTHONPATH=$HOME/lib/python/:$PYTHONPATH

# http://perlgeek.de/en/article/set-up-a-clean-utf8-environment                                                                        
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8

  • External packages: for each external package in src_ext, I create a directory with its usual name, say emacs, in which I create a file install.bash with the necessary commands to compile and install the package, typically:
#!/usr/bin/env bash
wget http://gnu.mirrors.hoobly.com/gnu/emacs/emacs-24.3.tar.gz
tar xzvf emacs-24.3.tar.gz
cd emacs-24.3
./configure --prefix=$HOME --with-x-toolkit=no --with-xpm=no --with-jpeg=no --with-gif=no --with-tiff=no
make
make install

  • Projects:
    • for each project in work, I create a set of directories, via mkdir -p analysis doc download figures preprocessing scripts src:
      • analysis: contains the outputs (exploratory, temporary, final) of the analyzes;
      • doc: contains the documentation allowing to replicate the whole project, usually as an README.org file;
      • download: contains the data sets obtained externally;
      • figures: contains all figures, used in the README and the manuscript;
      • preprocessing: contains the outputs of the preprocessing, then used to obtain outputs in analysis;
      • scripts: contains all scripts, usually used for preprocessing;
      • src: contains my own source code, usually used in the analyzes and not yet mature enough to be in ~/src.
    • to share my work with colleagues, I use tar -czvf project.at.gz --exclude=project/download project
  • Choices: I strive for freedom-protection (à la free software), portability, longevity, robustness and modularity
    • editing text: I use Emacs;
    • documenting projects: I use org-mode (major argument for using Emacs);
    • writing code: I start from one of my templates for bash, Python, R and C++;
    • versioning: I use git;
    • developing packages: I use the Autotools;
    • presenting: I use LaTeX (for papers) and Beamer (for talks), eventually LibreOffice Writer and Impress (papers and talks, respectively);
    • drawing: GIMP and Inkscape.
    • backup: I use rsync, via a script backup.bash:
#!/usr/bin/env bash
# backup.bash <path_to_backup> >& backup.log &
date
RSYNC_OPT="--compress --recursive --times --perms --links --exclude="*~" --delete --delete-excluded --progress"
rsync $RSYNC_OPT ~/remote1/work/project1 $1
rsync $RSYNC_OPT ~/remote1/work/project2 $1
date

  • My history: in 2006, during an internship in a bioinformatics lab, I discovered GNU/Linux. More specifically, I worked on a Fedora distribution and was able to install it on my laptop. From 2007 to 2010, during my PhD, I switched to Debian and then Ubuntu for my laptop, and I used several computer clusters running with Solaris and CentOS.
    • This looks like an anthology of weird names but, fundamentally, all these distributions are more or less similar to each other and can be described as Unix-like systems. Please note, however, that all these are not equivalent in terms of protecting your freedom. Michael Kerrisk presents this quite well (pdf). It is indeed important to know about the difference between GNU and Linux and, for those who read the biography of Steve Jobs, I highly recommend reading the biography of Richard Stallman (founder of GNU).