Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • PyroNoise on Mac OS X?

    Has anyone tried using the PyroNoise software on a Mac?

    According to the instructions, it is intended for Linux computers with MPI. OpenMPI comes bundled with Mac OS X, so I thought it might work... but I get this error when I give the 'make' command to generate the executables:

    mpicc -O3 -m64 -fexceptions -c FDist.c linking...
    mpicc -o FDist FDist.o -lm ld warning: in FDist.o, file is not of
    required architecture
    Undefined symbols:
    "_main", referenced from:
    start in crt1.10.5.o
    ld: symbol(s) not found
    collect2: ld returned 1 exit status
    make: *** [FDist] Error 1
    mbakker$ /Applications/PyroNoise2/FDist >

    Does anyone have any insights to share?
    Thanks!

  • #2
    Originally posted by mbakker View Post
    mpicc -O3 -m64 -fexceptions -c FDist.c
    linking...
    mpicc -o FDist FDist.o -lm
    ld warning: in FDist.o, file is not of required architecture
    I am not familiar with PyroNoise, but the error you are getting looks like FDist.c was compiled incorrectly (i.e., this is not an MPI issue). You only show part of the build logs above, but it looks like you compiler FDist.c with -m64 (meaning "compile in 64 bit mode") but then didn't try to link the final FDist executable with -m64 (i.e., it may have tried to default to 32 bit, thereby generating the architecture error).

    You should probably check the build/install instructions for PyroNoise; hopefully they'll describe compiler and linker flags and how to set them...?

    Comment


    • #3
      This is what ended up working:

      Change the first two lines of the makefile for the MPI executables (FDist, PCluster) to:

      CC = `mpicc -showme`
      CFLAGS = -O3 -m32 -fexceptions

      And this works on a MacBook Pro with Mac OS X 10.5.8

      Comment


      • #4
        Has anyone tried running PyroNoise on OS X 10.6? Specifically, what should the flags be set to in the following provided makefile:

        CC = mpicc -showme
        CFLAGS = -O3 -m64 -fexceptions
        EFLAGS =
        EFILE = FDist
        LIBS = -lm
        OBJS = FDist.o

        $(EFILE) : $(OBJS)
        @echo "linking..."
        $(CC) $(EFLAGS) -o $(EFILE) $(OBJS) $(LIBS)

        $(OBJS) : FDist.h
        $(CC) $(CFLAGS) -c $*.c

        Comment


        • #5
          MoSpeed

          Specifically, what should the flags be set to in the following provided makefile
          I am also very much interested to know the answer to your question.

          Comment

          Latest Articles

          Collapse

          • seqadmin
            Essential Discoveries and Tools in Epitranscriptomics
            by seqadmin




            The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
            Yesterday, 07:01 AM
          • seqadmin
            Current Approaches to Protein Sequencing
            by seqadmin


            Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
            04-04-2024, 04:25 PM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, 04-11-2024, 12:08 PM
          0 responses
          58 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 10:19 PM
          0 responses
          53 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 09:21 AM
          0 responses
          45 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-04-2024, 09:00 AM
          0 responses
          55 views
          0 likes
          Last Post seqadmin  
          Working...
          X