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
            Genetic Variation in Immunogenetics and Antibody Diversity
            by seqadmin



            The field of immunogenetics explores how genetic variations influence immune responses and susceptibility to disease. In a recent SEQanswers webinar, Oscar Rodriguez, Ph.D., Postdoctoral Researcher at the University of Louisville, and Ruben Martínez Barricarte, Ph.D., Assistant Professor of Medicine at Vanderbilt University, shared recent advancements in immunogenetics. This article discusses their research on genetic variation in antibody loci, antibody production processes,...
            11-06-2024, 07:24 PM
          • seqadmin
            Choosing Between NGS and qPCR
            by seqadmin



            Next-generation sequencing (NGS) and quantitative polymerase chain reaction (qPCR) are essential techniques for investigating the genome, transcriptome, and epigenome. In many cases, choosing the appropriate technique is straightforward, but in others, it can be more challenging to determine the most effective option. A simple distinction is that smaller, more focused projects are typically better suited for qPCR, while larger, more complex datasets benefit from NGS. However,...
            10-18-2024, 07:11 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, Today, 06:13 AM
          0 responses
          9 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 11-01-2024, 06:09 AM
          0 responses
          30 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 10-30-2024, 05:31 AM
          0 responses
          21 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 10-24-2024, 06:58 AM
          0 responses
          26 views
          0 likes
          Last Post seqadmin  
          Working...
          X