Dear seb567,
Thank you for your valuable comments and suggestion on my previous post. I was trying to install BLAT both as root and current user (i.e. acb07). I followed your instructions and the following error has come up while installing.
ar: could not create temporary file whilst writing archive: No more archived files
make[1]: *** [/jkweb.a] Error 1
make[1]: Leaving directory `/home/acb07/Desktop/blatSrc/lib'
make: *** [all] Error 2
I could able to create the directory /home/acb07/bin/i686/blat. And was trying to execute the command 'make' in my current directory "[email protected] ~/Desktop/blatSrc $". I also, edited the permissions to the both the directories that were created.
Hoping a suggestion to overcome the errors.
Header Leaderboard Ad
Collapse
BlatSrc 35 installing issue
Collapse
Announcement
Collapse
SEQanswers June Challenge Has Begun!
The competition has begun! We're giving away a $50 Amazon gift card to the member who answers the most questions on our site during the month. We want to encourage our community members to share their knowledge and help each other out by answering questions related to sequencing technologies, genomics, and bioinformatics. The competition is open to all members of the site, and the winner will be announced at the beginning of July. Best of luck!
For a list of the official rules, visit (https://www.seqanswers.com/forum/sit...wledge-and-win)
For a list of the official rules, visit (https://www.seqanswers.com/forum/sit...wledge-and-win)
See more
See less
X
-
Originally posted by anithsreenidhi View PostDear Friends,
I was installing BLAT in a linux MINT 13 system with MACHTYPE i686-linux-gnu and followed the instruction provided by SEB567 here in this forum. In this process i received the following error and not found any further remedy.
OBTAINED ERROR MESSAGE:
/usr/bin/ld.bfd.real: cannot open output file /home/acb07/bin/i686/blat: No such file or directory
collect2: ld returned 1 exit status
make[1]: *** [blat] Error 1
make[1]: Leaving directory `/home/acb07/Desktop/blatSrc/blat'
make: *** [all] Error 2
Looking forward for your suggestions to overcome these errors and towards a successful installation.
The most likely explanation is that /home/acb07/bin/i686/ does not
exist.
Can you throw this command before:
mkdir -p ~/bin/i686
Then, repeat what you have done.
Leave a comment:
-
Dear Friends,
I was installing BLAT in a linux MINT 13 system with MACHTYPE i686-linux-gnu and followed the instruction provided by SEB567 here in this forum. In this process i received the following error and not found any further remedy.
OBTAINED ERROR MESSAGE:
/usr/bin/ld.bfd.real: cannot open output file /home/acb07/bin/i686/blat: No such file or directory
collect2: ld returned 1 exit status
make[1]: *** [blat] Error 1
make[1]: Leaving directory `/home/acb07/Desktop/blatSrc/blat'
make: *** [all] Error 2
Looking forward for your suggestions to overcome these errors and towards a successful installation.
Leave a comment:
-
Look at these environmental variables :
These are what I use when I set up my environment for playing with UCSC/kent code ...
I run it from /app1/dnload/newersrc/ directory. I run with as a dot command so it's set in the current shell (you can write your own script and just cut'n'paste the script text to the command line(s) to get the same effect as a "dot" command). These are bash specific:
export USER=gbrowser-test2
export HOME=/app1/dnload/newersrc/
export PATH=$PATH:/app1/dnload/newersrc/bin/x86_64
export MACHTYPE=x86_64
Looks like you need to set HOME to some place you can write to.
It's using some default HOME which you (since you are a mere user and not the mighty root) can not write to.Last edited by Richard Finney; 08-16-2012, 03:04 PM.
Leave a comment:
-
Why are you root ?
You should install userland apps as a normal user.
Originally posted by Life_Dogma View PostIm trying to install Blat on my ubuntu12.04 64bit following this steps:
1. Download the BLAT source files at http://users.soe.ucsc.edu/~kent/src/ (look for the blatSrc* zip file with the most recent date)
2. Unzip the archive to create a 'blatSrc' directory
3. Remove the "-Werror" compiler flag to treat warnings as errors
To do this, edit the newly extracted blatSrc/inc/common.mk file and remove all occurences of string "-Werror" (thus allowing to get past warnings as errors)
Alternative [TO BE TESTED]:
edit the blatSrc/inc/common.mk file and change only line 17 from
HG_WARN_ERR = -DJK_WARN -Wall -Werror
to
HG_WARN_ERR = -DJK_WARN -Wall
4. Check the value of the environment variable 'MACHTYPE' (which depends on machine architecture) by typing in a terminal:
echo $MACHTYPE
It's usually something like 'i386', 'i686' or 'x86_64'.
If default $MACHTYPE is a long name with dashes (e.g. 'i486-pc-linux-gnu') it must be set to its correct "short" value. To find out this just type the command 'uname -m' and then:
[Option 1, temporary change] [TO BE TESTED]
Type the following commands:
MACHTYPE=i686 (or the correct MACHTYPE)
export MACHTYPE
[Option 2, permanent change]
Append the following two lines to the '~/.bashrc' file:
MACHTYPE=i686 (or the correct MACHTYPE)
export MACHTYPE
5. Make the directory ~/bin/$MACHTYPE (which is where the non-web executables will go) by typing:
mkdir ~/bin/$MACHTYPE
6. Go to the blatSrc/lib directory. If it doesn't already exist, make also here a $MACHINE directory:
mkdir $MACHTYPE
7. At the blatSrc directory type 'make'.
But once I start the make command and after the compiling process start the result I ger is :
/usr/bin/ld: cannot open output file /root/bin/x86_64/blat: No such file or directory
collect2: ld returned 1 exit status
make[1]: *** [blat] Error 1
make[1]: Leaving directory `/home/mohamed/Downloads/blatSrc/blat'
make: *** [all] Error 2
While the directory is already exist inside /root/bin/ by using the command:
mkdir ~/bin/$MACHTYPE
Which will not work this way but I have to acces the root folder after that the bin folder then creat the directory otherwise if I just eenter the command (mkdir ~/bin/$MACHTYPE) the result will be
mkdir: cannot create directory `/root/bin/x86_64': No such file or directory
How to solve it.
Thank you in advance
Leave a comment:
-
BlatSrc 35 installing issue
Im trying to install Blat on my ubuntu12.04 64bit following this steps:
1. Download the BLAT source files at http://users.soe.ucsc.edu/~kent/src/ (look for the blatSrc* zip file with the most recent date)
2. Unzip the archive to create a 'blatSrc' directory
3. Remove the "-Werror" compiler flag to treat warnings as errors
To do this, edit the newly extracted blatSrc/inc/common.mk file and remove all occurences of string "-Werror" (thus allowing to get past warnings as errors)
Alternative [TO BE TESTED]:
edit the blatSrc/inc/common.mk file and change only line 17 from
HG_WARN_ERR = -DJK_WARN -Wall -Werror
to
HG_WARN_ERR = -DJK_WARN -Wall
4. Check the value of the environment variable 'MACHTYPE' (which depends on machine architecture) by typing in a terminal:
echo $MACHTYPE
It's usually something like 'i386', 'i686' or 'x86_64'.
If default $MACHTYPE is a long name with dashes (e.g. 'i486-pc-linux-gnu') it must be set to its correct "short" value. To find out this just type the command 'uname -m' and then:
[Option 1, temporary change] [TO BE TESTED]
Type the following commands:
MACHTYPE=i686 (or the correct MACHTYPE)
export MACHTYPE
[Option 2, permanent change]
Append the following two lines to the '~/.bashrc' file:
MACHTYPE=i686 (or the correct MACHTYPE)
export MACHTYPE
5. Make the directory ~/bin/$MACHTYPE (which is where the non-web executables will go) by typing:
mkdir ~/bin/$MACHTYPE
6. Go to the blatSrc/lib directory. If it doesn't already exist, make also here a $MACHINE directory:
mkdir $MACHTYPE
7. At the blatSrc directory type 'make'.
But once I start the make command and after the compiling process start the result I ger is :
/usr/bin/ld: cannot open output file /root/bin/x86_64/blat: No such file or directory
collect2: ld returned 1 exit status
make[1]: *** [blat] Error 1
make[1]: Leaving directory `/home/mohamed/Downloads/blatSrc/blat'
make: *** [all] Error 2
While the directory is already exist inside /root/bin/ by using the command:
mkdir ~/bin/$MACHTYPE
Which will not work this way but I have to acces the root folder after that the bin folder then creat the directory otherwise if I just eenter the command (mkdir ~/bin/$MACHTYPE) the result will be
mkdir: cannot create directory `/root/bin/x86_64': No such file or directory
How to solve it.
Thank you in advance
Latest Articles
Collapse
-
by seqadmin
Developments in sequencing technologies and methodologies have transformed the field of epigenetics, giving researchers a better way to understand the complex world of gene regulation and heritable modifications. This article explores some of the diverse sequencing methods employed in the study of epigenetics, ranging from classic techniques to cutting-edge innovations while providing a brief overview of their processes, applications, and advances.
Methylation Detect...-
Channel: Articles
05-31-2023, 10:46 AM -
-
Differential Expression and Data Visualization: Recommended Tools for Next-Level Sequencing Analysisby seqadmin
After covering QC and alignment tools in the first segment and variant analysis and genome assembly in the second segment, we’re wrapping up with a discussion about tools for differential gene expression analysis and data visualization. In this article, we include recommendations from the following experts: Dr. Mark Ziemann, Senior Lecturer in Biotechnology and Bioinformatics, Deakin University; Dr. Medhat Mahmoud Postdoctoral Research Fellow at Baylor College of Medicine;...-
Channel: Articles
05-23-2023, 12:26 PM -
-
by seqadmin
Continuing from our previous article, we share variant analysis and genome assembly tools recommended by our experts Dr. Medhat Mahmoud, Postdoctoral Research Fellow at Baylor College of Medicine, and Dr. Ming "Tommy" Tang, Director of Computational Biology at Immunitas and author of From Cell Line to Command Line.
Variant detection and analysis tools
Mahmoud classifies variant detection work into two main groups: short variants (<50...-
Channel: Articles
05-19-2023, 10:03 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, 06-01-2023, 08:56 PM
|
0 responses
10 views
0 likes
|
Last Post
by seqadmin
06-01-2023, 08:56 PM
|
||
Deep Sequencing Unearths Novel Genetic Variants: Enhancing Precision Medicine for Vascular Anomalies
by seqadmin
Started by seqadmin, 06-01-2023, 07:33 AM
|
0 responses
9 views
0 likes
|
Last Post
by seqadmin
06-01-2023, 07:33 AM
|
||
Unveiling Genetic Associations Through Transcription Factor Binding Quantitative Trait Loci
by seqadmin
Started by seqadmin, 05-31-2023, 07:50 AM
|
0 responses
18 views
0 likes
|
Last Post
by seqadmin
05-31-2023, 07:50 AM
|
||
Exploring French-Canadian Ancestry: Insights into Migration, Settlement Patterns, and Genetic Structure
by seqadmin
Started by seqadmin, 05-26-2023, 09:22 AM
|
0 responses
23 views
0 likes
|
Last Post
by seqadmin
05-26-2023, 09:22 AM
|
Leave a comment: