Elizabeth Skippington Notes: Difference between revisions

From MDWiki
Jump to navigationJump to search
(Removing all content from page)
 
Line 1: Line 1:
=== Liz's Notes ===


[[E. coli genomes]]
[[Mauve stuff]]
[[Mr Bayes stuff]]
[[SAM]]
= Useful links =
Cytoscape with Power Plugin (via Java WebStart) [http://www.biotec.tu-dresden.de/schroeder/group/powergraphs/cytoscape_webstart/cy1_powergraphsonly.jnlp]
= Running Java Apps =
Currently it appears that only version 1.4.2 of the JRE (Java Runtime Environment) is installed, which is not suitable for all applications. To use the newer version of JRE, you need to specify the full path to the java executable that is installed in the home directory e.g. instead of
  java app.jar
use
  /home/e.skippington/Programs/java/jre1.6.0_07/bin/java app.jar
This has been temporarily fixed by creating a symlink in ~/bin/ of java pointing to the new version of java.
= Running Java WebApps =
The latest JRE has been installed, but only the 32 bit version, so a separate 32 bit version of firefox has been installed to use the latest 32 bit version of the JRE. The 32 bit, new JRE firefox is at:
  /usr/lib/firefox-3.0.1/firefox
and a symlink called firefox32 has been created to point to it.
= Running power graph Program =
Run the power graph program by something like:
  java -Xmx1024M -jar Oog.jar -convert -inputfiles=edg -output=bbl -v -writeLog=0 -sortbyfilesize -checkequality -minsim=0.0 -min_max=1 -useGlobalClustering=1 -useGreedyClustering=1
Use the following line for help:
  java -Xmx1024M -jar Oog.jar -?
= Making metabolic networks =
Metabolic data collected from KEGG 20/4/2009
ftp://ftp.genome.jp/pub/kegg
/home/e.skippington/Phd/Network/KEGG_metabolic_networks
wget ftp://ftp.genome.jp/pub/kegg/ligand/reaction/reaction.lst
wget ftp://ftp.genome.jp/pub/kegg/ligand/reaction/reaction_name.lst
= Installing MCL package =
download mcl-latest.tar.gz  from http://www.micans.org/mcl/src/ to /home/e.skippington/Programs/MCL
  tar xzf mcl-latest.tar.gz
  ./configure --enable-blast
  make
  make prefix=/home/e.skippington/MCL_test/ install
Now the mcl executable is in /home/e.skippington/MCL_test/bin
Check the PATH variable:
  echo $PATH
Need to append /home/e.skippington/MCL_test/bin to the path, do this by editing .bashrc in my home directory
  ~cd
  ls -la
  vim .bashrc
Add the following line to the file:
  PATH=$PATH:/home/e.skippington/MCL_test/bin; export PATH
  vim mcxdeblast
Change the first line to:
  #!/usr/bin/perl -w
= Running MCL package =
  mcxdeblast --m9 --line-mode=abc --out=- all_16_ecoli.m9 | mcl - --abc -o all_16_e.coli.clus
I edited the blast results for an e-evalue cutoff of 0.01 and then ran the mcl again at different inflation parameters
  mcxdeblast --m9 --line-mode=abc --out=- all_16_ecoli_w_cutoff.m9 | mcl - --abc -I 1.2 -o all_16_e.coli_12.clus
  mcxdeblast --m9 --line-mode=abc --out=- all_16_ecoli_w_cutoff.m9 | mcl - --abc -I 1.6 -o all_16_e.coli_16.clus
  mcxdeblast --m9 --line-mode=abc --out=- all_16_ecoli_w_cutoff.m9 | mcl - --abc -I 2.0 -o all_16_e.coli_2.clus
  mcxdeblast --m9 --line-mode=abc --out=- all_16_ecoli_w_cutoff.m9 | mcl - --abc -I 2.4 -o all_16_e.coli_2.clus
= BLASTp =
Download from ftp://ftp.ncbi.nih.gov/blast/executables/LATEST/
blast-2.2.18-x64-linux.tar.gz
All 16 E. coli fasta files are in the directory /home/e.skippington/Phd/LGT/ecoli_fasta
Concatenate into one big file
  cat  AC_000091.faa NC_002655.faa NC_004337.faa NC_004741.faa NC_007606.faa NC_007946.faa NC_008258.faa NC_009800.faa NC_000913.faa NC_002695.faa NC_004431.faa NC_007384.faa  NC_007613.faa  NC_008253.faa NC_008563.faa  NC_009801.faa > all_16_ecoli.faa
  /home/e.skippington/Programs/BLAST/blast-2.2.18/bin/formatdb -i all_16_ecoli.faa -o T -n all_16_ecoli_db
  /home/e.skippington/Programs/BLAST/blast-2.2.18/bin/blastpgp -i all_16_ecoli.faa -d all_16_ecoli_db -o all_ecoli.m9 -m9

Latest revision as of 11:50, 10 July 2011