Displaying 1 result from an estimated 1 matches for "mytreefile_loc".
2009 Feb 23
1
running multiple commands in one system() call
...tings from my .bash_profile file, which apparently it doesn't
currently (the shell R calls uses an older version of python, and also
this older version of python can't see various python modules I have to
import to make the python script work).
Basically I need to do this:
============
mytreefile_location <-
"/bioinformatics/phylocom/_results/beta/ss_newicks/subsamp6_fromea_wnalist.newick"
cmd1 = 'source ~/.bash_profile'
cmd2 = paste('python
/bioinformatics/phylocom/_scripts/update_newick_root.py ',
mytreefile_location)
system(cmd1)
system(cmd2)
============
....