The spkg file is here: http://old.files.sagemath.org/spkg/a...es-2.8.p1.spkg
Edit: My apologies. I re-merged your question back into the original thread where you had originally asked it for benefit of future users. The new thread you had started has this answer as well.
Unconfigured Ad
Collapse
X
-
thanks
I though that since I was asking about a file given in the post to fix an issue and the link was dead it still my request still counted as being part of the thread. I will post a new thread then. The link that you gave does not have the spkg part of it and is the original code. Thanks for your help.
Leave a comment:
-
-
In future start a new thread if you are asking a question that is not related to the parent.
A google search found this: http://ftp.riken.jp/sagemath/spkg/up...hes/index.html I am not sure if this is the package you are looking for or if the file is genuine. Use with caution.Last edited by GenoMax; 03-12-2016, 03:04 PM.
Leave a comment:
-
-
Looking for Cephes-2.8.spkg
The link that was posted for Cephes-2.8.spkg is dead. I am trying to find it. Can someone post me a link? I
Leave a comment:
-
-
Hi All, I'm a newbie in bioinformatics, and am hoping to compile samtools in Cygwin. I could see that most of the posts are shared by senior members, which is way too difficult to understand. Most of the information is also spread out on the net. Can anyone please write a step by step walk through for newbies like me. It would really useful. Thank you.
Leave a comment:
-
-
I added these to Makefile. After "CFLAGS=", I kept one space and one tab (the same as the original line of CFLAGS) and then "-l/usr/include/ncurses".Originally posted by jmarshall View PostThe -Dexpl[etc] flags need to be in action when bam_maqcns.c is compiled. (And in the just-released samtools 0.1.9, also when errmod.c is compiled.) You probably have a faulty bam_maqcns.o lying around from the previous compilation attempts. Remove it.
In fact, whenever you change settings like this in a makefile, it's a good idea to use "make clean" before building again. So try again, typing "make clean" and then "make".
And both ncurse and nurses-dev are installed.
My error message is as follows:
/usr/include/bits/mathcalls.h:101: error: conflicting types for ‘exp’
/usr/include/bits/mathcalls.h:110: error: conflicting types for ‘log’
make[2]: *** [bam_md.o] Error 1
make[2]: Leaving directory `/usr/local/samtools-0.1.18'
make[1]: *** [lib-recur] Error 1
make[1]: Leaving directory `/usr/local/samtools-0.1.18'
make: *** [all-recur] Error 1
Could anyone help me? I have been confused with this problem for a while.
Leave a comment:
-
-
I followed these instructions (including beginning with the command 'make clean' before compilation), but still get an error message.Originally posted by jmarshall View PostThe Cygwin folks changed the way they install ncurses a while back; see http://www.cygwin.com/ml/cygwin-anno.../msg00002.html.
Hence you should add -I/usr/include/ncurses to CFLAGS in the samtools Makefile. This will solve the <curses.h> problem you are running into.
After that, you'll probably find that it fails to link, complaining that expl() and logl() are not defined. You can work around the absence of these C99 functions by adding -Dexpl=exp -Dlogl=log to DFLAGS in the samtools Makefile, though this may have an adverse effect on SNP calling: http://sourceforge.net/mailarchive/m...l.sanger.ac.uk.
With these additions, samtools 0.1.8 can be compiled on Cygwin.
I added '-I/usr/include/ncurses' to CFLAGS and '-Dexpl=exp -Dlogl=log to DFLAGS' to DFLAGS in both Makefile and Makefile.mingw. However, I still get the message:
bam_tview.c:5:20: fatal error: curses.h: No such file or directory
compilation terminated.
Makefile:21: recipe for target `bam_tview.o' failed
make: *** [bam_tview.o] Error 1
Any suggestions?
Leave a comment:
-
-
Hi everbody,
In http://download.fedora.redhat.com/pub/epel/6/x86_64/ there are several files .rpm for installation in CentOS including Samtools, Bedtools, bwa, bowtie and others.
Leave a comment:
-
-
I recently found a way may resolve the precision problem:Originally posted by jmarshall View PostThe Cygwin folks changed the way they install ncurses a while back; see http://www.cygwin.com/ml/cygwin-anno.../msg00002.html.
Hence you should add -I/usr/include/ncurses to CFLAGS in the samtools Makefile. This will solve the <curses.h> problem you are running into.
After that, you'll probably find that it fails to link, complaining that expl() and logl() are not defined. You can work around the absence of these C99 functions by adding -Dexpl=exp -Dlogl=log to DFLAGS in the samtools Makefile, though this may have an adverse effect on SNP calling: http://sourceforge.net/mailarchive/m...l.sanger.ac.uk.
With these additions, samtools 0.1.8 can be compiled on Cygwin.
First: Install CEPHES library or only install the ldouble library (here install cephes)
1. Using this package to install cephes.
It's just a bzip2 compressed tar archive.
which still lacks of two code-files: whitebxf.c and whitebx.c under "c9x-complex".
They can be downloaded from github of cephes' master branch.
(You even can complie without these two files, they are just for test.)
2. Before installation, environment var "SAGE_LOCAL" should be specified like the "prefix" var in auto-configure process.
3. run 'spkg-install' to install cephes.
After installation of cephes, you will find libml.a in your-installed-lib dir.
Then, change the makefile of samtools to cover the installed-lib dirs,
replace " -lm" with " -lml" option in make file.(besides the makefile in bcftools dir)
Then make
I haven't made any test of the prog, maybe the correct way should be that include cephes header file (cephes_ldouble.h) to the C code files which include math.h already.
Though I think it can get through the precision problem, and I just installed samtools 0.1.16 using this method.
May it help!
Leave a comment:
-
-
After all changes in Make file were done and you run make command, type ./samtools.exe to run the samtools
Leave a comment:
-
-
Nevermind, finally got it working. Spacing error on my part in makefile. Thank you all for your previous posts. Very helpfull.
Leave a comment:
-
-
I'm having many of the same problems as you all in installing samtools with Cygwin. I have added the changes to makefile as suggested by jmarshall and huyvuong, am using samtools 0.1.9, and running make clean before make.
Still, several lines indicating : undefined reference to '_expl' (or '_logl') are appearing.
Is there something else I'm missing here?
Leave a comment:
-
-
Have you tried "make clean" before "make" command? Also, try using the latest version of samtools 0.1.9. hope it helps
Leave a comment:
-
-
Thanks for the response. I installed ncurses and modified the makefile. When I use make command the message I get is - Makefile:6: ***Recursive variable 'KNETFILE_O' references itself (eventually). Stop.
I am not sure if i have installed samtools successfully.
Leave a comment:
-
Latest Articles
Collapse
-
by SEQadmin2
Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.
The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
...-
Channel: Articles
06-02-2026, 10:05 AM -
-
by SEQadmin2
With the launch of new single-cell sequencing platforms in 2026, the field stands at an exciting inflection point. This article surveys the most impactful advances in the field and discusses how they’re reshaping research in cancer, immunology, and beyond.
Introduction
Single-cell sequencing technologies have undergone remarkable advances over the past decade, transitioning from low-throughput experimental approaches to highly scalable platforms capable of...-
Channel: Articles
05-22-2026, 06:42 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, 06-05-2026, 10:09 AM
|
0 responses
14 views
0 reactions
|
Last Post
by SEQadmin2
06-05-2026, 10:09 AM
|
||
|
Started by SEQadmin2, 06-04-2026, 08:59 AM
|
0 responses
27 views
0 reactions
|
Last Post
by SEQadmin2
06-04-2026, 08:59 AM
|
||
|
Started by SEQadmin2, 06-02-2026, 12:03 PM
|
0 responses
33 views
0 reactions
|
Last Post
by SEQadmin2
06-02-2026, 12:03 PM
|
||
|
Started by SEQadmin2, 06-02-2026, 11:40 AM
|
0 responses
23 views
0 reactions
|
Last Post
by SEQadmin2
06-02-2026, 11:40 AM
|
Leave a comment: