Error In Modeller
Hello all i am running modeller9.11 using mod9.11 script[...] using my script ....on which it is giving import site error import site failed: use -v for traceback what is the meaning of this error and how to solve it ?
python
• 2,488 views
•
link
written
by
yogi.bioinfo •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
fuc.pyvcf Attribute Error
written by Emilia •Hello, I try to extract GT information from FORMAT field in my .vcf file using fuc.pyvcf submodule. When I try to run my script: from …
-
Fasta blast alignment error
written by jahanshahi.amin •I'm running sequence alignment on a .fasta file (which had been converted from .fastq file) by google colab using biopython library. when running the following …
-
ROSE Algorithm: Error when importing upper and join from string
written by mropriHello, I am trying to run the ROSE algorithm created by the young lab, url here: http://younglab.wi.mit.edu/super_enhancer_code.html Specifically, I am running the ROSE_main.py script: http://younglab.wi.mit.edu/super_enhancer_code.html …
-
about python module aln
written by teresayahu •Hi, I am using script remove_mapping_reads.py from EBV portal https://ebv.wistar.upenn.edu/tools.html. In running the script there is an error: Traceback (most recent call last): File "remove_mapping_reads.py", …
-
Problem In running Modeller for Homology Modelling of Protein
written by Vinay Singh •Hello Everyone, I am Running Modeller for Homology Modelling of Protein but Getting error and not able to resolve the problem please help to sort …
-
Error Using Mysql For Orthomcl
written by yogi.bioinfo •<p>Hello all ,i am a student of bioinformatics ,using Orthomcl tool for my task , when i use the command</p> <pre> ./orthomclLoadBlast my_orthomcl/orthomcl.config my_orthomcl/similarSequence.txt</pre> <p>it …
-
Tophat2 Error With Repeat-Masked Genome!!
written by Rahul Sharma<p>Dear all,</p> <p>I was trying to <strong>map</strong> the <strong>RNA seq data</strong> on the <strong>assembled genome</strong>. I was using Tophat <code>tophat-2.0.10.Linux_x86_64</code> and Bowtie2 <code>bowtie2-2.1.0</code>. When I …
-
Perldbd-Mysql Error
written by yogi.bioinfo •<p>Hello all , i am working on orthomcl ..when i use the command <strong>[cdac@nbri bin]$ orthomclLoadBlast my_orthomcl/orthomcl.config my_orthomcl/similarSequence.txt</strong> it gives </p> <p><strong>Can't load '/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/auto/DBD/mysql/mysql.so' for …
-
Mysql Installation Problem
written by yogi.bioinfo •<p>Hello all, i have installed mysql on my server using <strong>sudo yum install mysql-server service mysqld start</strong> on which my system replies <strong>Setting up Install …
-
Orthomclblastparser Problems In Orthomcl Programs
written by yogi.bioinfo •<p>hello all , i am a student of bioinformatics and using orthomcl for my work , when i use the command for blast output</p> <pre><code>[root@nbri …
Can you post your script which gave this error and copy the full error output? It looks like you didn't install one of the files that you are trying to import, but it's impossible to say without seeing the script.
from modeller import *
log.verbose() env = environ()
#-- Prepare the input files
#-- Read in the sequence database sdb = sequence_db(env) sdb.read(seq_database_file='pdb_95.pir', seq_database_format='PIR', chains_list='ALL', minmax_db_seq_len=(30, 4000), clean_sequences=True)
#-- Write the sequence database in binary form sdb.write(seq_database_file='pdb_95.bin', seq_database_format='BINARY', chains_list='ALL')
#-- Now, read in the binary database sdb.read(seq_database_file='pdb_95.bin', seq_database_format='BINARY', chains_list='ALL') #-- Read in the target sequence/alignment aln = alignment(env) aln.append(file='qseq1.ali', alignment_format='PIR', align_codes='ALL') #-- Convert the input sequence/alignment into
profile format
prf = aln.to_profile() #-- Scan sequence database to pick up homologous sequences prf.build(sdb, matrix_offset=-450, rr_file='${LIB}/blosum62.sim.mat', gap_penalties_1d=(-500, -50), n_prof_iterations=1, check_profile=False, max_aln_evalue=0.01) #-- Write out the profile in text format prf.write(file='build_profile.prf', profile_format='TEXT') #-- Convert the profile back to alignment format aln = prf.to_alignment() #-- Write out the alignment file aln.write(file='build_profile.ali', alignment_format='PIR')
And the full error when you use the -v option?
C:\Program Files (x86)\Modeller9.10> mod9v1 is not recongnized as an internal and external command, operable program or batch file."
It means the MODELLER bin directory is not in your PATH. Did you move the installation directory?