N
Nick Matzke
Hi all,
So, I can run this in the ipython shell just fine:
===========
a = ["12", "15", "16", "38.2"]
dim = int(sqrt(size(a)))
dim
But if I move these commands to a function in another file, it freaks out:
=================================
a = distances_matrix.split('\t')
from LR_run_functions_v2 import make_half_square_array
d = make_half_square_array(a)
NameError Traceback (most recent call last)
/bioinformatics/phylocom/<ipython console> in <module>()
/bioinformatics/phylocom/_scripts/LR_run_functions_v2.py in
make_half_square_array(linear_version_of_square_array)
1548
1549 a = linear_version_of_square_array
-> 1550 dim = int(sqrt(size(a)))
1551
1552
NameError: global name 'sqrt' is not defined
=================================
Here's the function in LR_run_functions_v2.py
==========================
def make_half_square_array(linear_version_of_square_array):
a = linear_version_of_square_array
dim = int(sqrt(size(a)))
==========================
Any ideas? If I do something like "import math" in the subfunction,
then the error changes to "global name 'math' is not defined".
Thanks!
Nick
--
====================================================
Nicholas J. Matzke
Ph.D. student, Graduate Student Researcher
Huelsenbeck Lab
Center for Theoretical Evolutionary Genomics
4151 VLSB (Valley Life Sciences Building)
Department of Integrative Biology
University of California, Berkeley
Lab websites:
http://ib.berkeley.edu/people/lab_detail.php?lab=54
http://fisher.berkeley.edu/cteg/hlab.html
Dept. personal page:
http://ib.berkeley.edu/people/students/person_detail.php?person=370
Lab personal page: http://fisher.berkeley.edu/cteg/members/matzke.html
Lab phone: 510-643-6299
Dept. fax: 510-643-6264
Cell phone: 510-301-0179
Email: (e-mail address removed)
Mailing address:
Department of Integrative Biology
3060 VLSB #3140
Berkeley, CA 94720-3140
-----------------------------------------------------
"[W]hen people thought the earth was flat, they were wrong. When people
thought the earth was spherical, they were wrong. But if you think that
thinking the earth is spherical is just as wrong as thinking the earth
is flat, then your view is wronger than both of them put together."
Isaac Asimov (1989). "The Relativity of Wrong." The Skeptical Inquirer,
14(1), 35-44. Fall 1989.
http://chem.tufts.edu/AnswersInScience/RelativityofWrong.htm
====================================================
So, I can run this in the ipython shell just fine:
===========
a = ["12", "15", "16", "38.2"]
dim = int(sqrt(size(a)))
dim
===========
But if I move these commands to a function in another file, it freaks out:
=================================
a = distances_matrix.split('\t')
from LR_run_functions_v2 import make_half_square_array
d = make_half_square_array(a)
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
/bioinformatics/phylocom/<ipython console> in <module>()
/bioinformatics/phylocom/_scripts/LR_run_functions_v2.py in
make_half_square_array(linear_version_of_square_array)
1548
1549 a = linear_version_of_square_array
-> 1550 dim = int(sqrt(size(a)))
1551
1552
NameError: global name 'sqrt' is not defined
=================================
Here's the function in LR_run_functions_v2.py
==========================
def make_half_square_array(linear_version_of_square_array):
a = linear_version_of_square_array
dim = int(sqrt(size(a)))
==========================
Any ideas? If I do something like "import math" in the subfunction,
then the error changes to "global name 'math' is not defined".
Thanks!
Nick
--
====================================================
Nicholas J. Matzke
Ph.D. student, Graduate Student Researcher
Huelsenbeck Lab
Center for Theoretical Evolutionary Genomics
4151 VLSB (Valley Life Sciences Building)
Department of Integrative Biology
University of California, Berkeley
Lab websites:
http://ib.berkeley.edu/people/lab_detail.php?lab=54
http://fisher.berkeley.edu/cteg/hlab.html
Dept. personal page:
http://ib.berkeley.edu/people/students/person_detail.php?person=370
Lab personal page: http://fisher.berkeley.edu/cteg/members/matzke.html
Lab phone: 510-643-6299
Dept. fax: 510-643-6264
Cell phone: 510-301-0179
Email: (e-mail address removed)
Mailing address:
Department of Integrative Biology
3060 VLSB #3140
Berkeley, CA 94720-3140
-----------------------------------------------------
"[W]hen people thought the earth was flat, they were wrong. When people
thought the earth was spherical, they were wrong. But if you think that
thinking the earth is spherical is just as wrong as thinking the earth
is flat, then your view is wronger than both of them put together."
Isaac Asimov (1989). "The Relativity of Wrong." The Skeptical Inquirer,
14(1), 35-44. Fall 1989.
http://chem.tufts.edu/AnswersInScience/RelativityofWrong.htm
====================================================