Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Life_Dogma
    Junior Member
    • May 2012
    • 4

    #1

    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
  • seb567
    Senior Member
    • Jul 2008
    • 260

    #2
    Why are you root ?

    You should install userland apps as a normal user.


    Originally posted by Life_Dogma View Post
    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

    Comment

    • Richard Finney
      Senior Member
      • Feb 2009
      • 701

      #3
      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.

      Comment

      • anithsreenidhi
        Junior Member
        • Nov 2012
        • 2

        #4
        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.

        Comment

        • seb567
          Senior Member
          • Jul 2008
          • 260

          #5
          Originally posted by anithsreenidhi View Post
          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.
          The linker is unable to write the resulting file in /home/acb07/bin/i686/blat.

          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.

          Comment

          • anithsreenidhi
            Junior Member
            • Nov 2012
            • 2

            #6
            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 "acb07@acb07-G31M-ES2L ~/Desktop/blatSrc $". I also, edited the permissions to the both the directories that were created.

            Hoping a suggestion to overcome the errors.
            Last edited by anithsreenidhi; 11-16-2012, 10:54 PM. Reason: Highliging

            Comment

            Latest Articles

            Collapse

            • SEQadmin2
              Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
              by SEQadmin2



              CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

              Despite this, “CRISPR helped turn genome editing from a specialized technique into
              ...
              07-31-2026, 11:01 AM
            • SEQadmin2
              Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
              by SEQadmin2


              Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

              The systematic characterization of the human proteome has
              ...
              07-20-2026, 11:48 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, 08-06-2026, 07:41 AM
            0 responses
            20 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 08-03-2026, 10:13 AM
            0 responses
            33 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-31-2026, 02:55 AM
            0 responses
            43 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-24-2026, 12:17 PM
            0 responses
            26 views
            0 reactions
            Last Post SEQadmin2  
            Working...