meta data for this page
  •  

This is an old revision of the document!


InterPro

To run InterPro locally, you need to download the InterPro databases and modify the configure file of the program. Luckily, we already have a ready to use version of InterProScan available at

/share/project/interproscan-5.28-67.0

Please run it straight from the share folder and don't attempt to copy it. Because InterProScan takes up a lot of memory, you should send this job to our cluster:

Note, that InterProScan can not create folders for the output. That means that you need to use an existing directory that does not contain special characters like dots in its name for the output.

PrerequisitesInterproScan

PrerequisitesInterproScan

  1. Python 2.7
    1. you can check your python version with the command
      python --version
  2. Java 1.8
    1. you can check your java version with the command
      java -version

Running Interproscan

bash /share/project/interproscan-5.28-67.0/interproscan.sh -i <YOURINPUTFILE> -b ./interproscan -goterms -appl TIGRFAM,PRODOM,PFAM,SMART,CDD,PROSITEPROFILES,PANTHER,Coils,MobiDBLite

Options:

  1. -i - specify the input file containing the sequences in Fasta format.
  2. -b - specify the name of the output directory
  3. -goterms - Extract the GO terms from the annotated domains and features and assigns them to the query sequence
  4. -appl - specify the analyses you want to include in your Interproscan run. Selecting fewer applications will speed up the search

For further information about how to run Interproscan, please see the online wiki provided by the developer.

Once everything is set, run the analysis on all sequences. This analysis will take some time, so you best run it over the weekend.

RunInterpro.sh
#!/bin/bash
 
#SBATCH --partition=all,inteli7
#SBATCH --cpus-per-task=8
#SBATCH --mem=64GB
#SBATCH --job-name="InterProTest"
 
 
bash /share/project/interproscan-5.28-67.0/interproscan.sh -i <YOURINPUTFILE> -b ./interproscan -goterms -appl TIGRFAM,PRODOM,PFAM,SMART,CDD,PROSITEPROFILES,PANTHER,Coils,MobiDBLite 

Just download and modify this file, then send it to the cluster with

sbatch RunInterpro.sh