Try 'make clean' to replace old objects and dependencies that were generated by the prior makes.
Seqanswers Leaderboard Ad
Collapse
Announcement
Collapse
No announcement yet.
X
-
From what you originally wrote, there's no reason for it to try to go to a non-existent /home/lab/Desktop/JL directory. There's also no reason I've ever seen to edit the Makefile for samtools aside from changing the LIBCURSES value (if needed). I'm guessing that there's something weird with your Makefile. You might try just deleting the samtools directory and redownloading it (from the samtools page on sourceforge and no where else) so you know nothing is screwy. Then, (1) extract the files, (2) cd into the resulting directory and (3) type make without editing any files. You mentioned using Ubuntu earlier and I can confirm that this works correctly under Ubuntu.
Comment
-
So, I've tried re-downloading both samtools and ubuntu several times. The simple directions to just go into the folder and command "make" is simply not working. And when I get tricky (changing the makefile, downloading my own c++, nsurses, or zlib, trying it as a different user ect.) but it still won't work. I feel as if I've exhausted my google search results. I even contacted the samtools people, who told me to download and try again. This I have done many many times. What could I be missing?
Thank you for your continuing comments. I can't tell you how much I appreciate your efforts on my behalf.
Comment
-
Here's what I did to download and compile a new version of samtools:
Code:wget -O samtools-0.1.18.tar.bz2 http://sourceforge.net/projects/samtools/files/samtools/0.1.18/samtools-0.1.18.tar.bz2/download tar xjf samtools-0.1.18.tar.bz2 cd samtools-0.1.18 make make razip
Code:[server samtools-0.1.18]$ ./samtools mpileup Usage: samtools mpileup [options] in1.bam [in2.bam [...]] Input options: -6 assume the quality is in the Illumina-1.3+ encoding -A count anomalous read pairs -B disable BAQ computation -b FILE list of input BAM files [null] -C INT parameter for adjusting mapQ; 0 to disable [0] -d INT max per-BAM depth to avoid excessive memory usage [250] -E extended BAQ for higher sensitivity but lower specificity -f FILE faidx indexed reference sequence file [null] -G FILE exclude read groups listed in FILE [null] -l FILE list of positions (chr pos) or regions (BED) [null] [...etc...]
Comment
-
THANK YOU everyone for your help!! I did get this to work. In case some poor student is struggling with the same thing I was, here's what finally worked:
1) I deleted the samtools folders I had.
2) used command:
sudo apt-get install samtools
3) Now, I need to figure out where it went, so I did
dpkg -s samtools
It showed-- samtools: /usr/bin/samtools /usr/lib/samtools /usr/share/samtools /usr/share/man/man1/samtools.1.gz
4) In usr/bin, the executable is locked. To unlock I did
cd ../
cd usr
cd bin
sudo chmod a+rwx samtools
5) manually move the files I'm working with (the reference.fasta and the output.sorted.bam) to the usr>bin folder
6) try command in usr>bin folder
sudo samtools mpileup -f reference.fasta output.sorted.bam >output.mpileup
Comment
Latest Articles
Collapse
-
by seqadmin
The human gut contains trillions of microorganisms that impact digestion, immune functions, and overall health1. Despite major breakthroughs, we’re only beginning to understand the full extent of the microbiome’s influence on health and disease. Advances in next-generation sequencing and spatial biology have opened new windows into this complex environment, yet many questions remain. This article highlights two recent studies exploring how diet influences microbial...-
Channel: Articles
02-24-2025, 06:31 AM -
-
by seqadmin
Like all molecular biology applications, next-generation sequencing (NGS) workflows require diligent quality control (QC) measures to ensure accurate and reproducible results. Proper QC begins at nucleic acid extraction and continues all the way through to data analysis. This article outlines the key QC steps in an NGS workflow, along with the commonly used tools and techniques.
Nucleic Acid Quality Control
Preparing for NGS starts with isolating the...-
Channel: Articles
02-10-2025, 01:58 PM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, 03-03-2025, 01:15 PM
|
0 responses
151 views
0 likes
|
Last Post
by seqadmin
03-03-2025, 01:15 PM
|
||
Started by seqadmin, 02-28-2025, 12:58 PM
|
0 responses
234 views
0 likes
|
Last Post
by seqadmin
02-28-2025, 12:58 PM
|
||
Started by seqadmin, 02-24-2025, 02:48 PM
|
0 responses
603 views
0 likes
|
Last Post
by seqadmin
02-24-2025, 02:48 PM
|
||
Started by seqadmin, 02-21-2025, 02:46 PM
|
0 responses
263 views
0 likes
|
Last Post
by seqadmin
02-21-2025, 02:46 PM
|
Comment