Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • dsperley
    Junior Member
    • Oct 2014
    • 2

    Randfold installation problem

    Hi

    I'm trying to install randfold2.0 as part of mirdeep. I've installed squid1.9g, and edited the randfold makefile to include the path of the squid1.9g directory. When I run make, I get the following warnings and errors:


    Hydrogen-2:randfold-2.0 danielleperley$ make
    gcc -O3 -I. -I/Users/danielleperley/squid-1.9g/ -L/Users/danielleperley/squid-1.9g/. -o randfold params.o energy_par.o fold.o fold_vars.o utils.o randfold.c -lm -lsquid
    randfold.c:64:13: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
    while (c = *++argv[0])
    ~~^~~~~~~~~~~~
    randfold.c:64:13: note: place parentheses around the assignment to silence this warning
    while (c = *++argv[0])
    ^
    ( )
    randfold.c:64:13: note: use '==' to turn this assignment into an equality comparison
    while (c = *++argv[0])
    ^
    ==
    randfold.c:89:2: warning: implicitly declaring library function 'strcpy' with type 'char *(char *, const char *)'
    strcpy(seqfile,*argv);
    ^
    randfold.c:89:2: note: please include the header <string.h> or explicitly provide a declaration for 'strcpy'
    randfold.c:103:38: warning: implicitly declaring library function 'strlen' with type 'unsigned long (const char *)'
    structure = malloc(sizeof(char) * (strlen(seq)+1));
    ^
    randfold.c:103:38: note: please include the header <string.h> or explicitly provide a declaration for 'strlen'
    randfold.c:147:3: warning: expression result unused [-Wunused-value]
    free_arrays;
    ^~~~~~~~~~~
    4 warnings generated.
    Undefined symbols for architecture x86_64:
    "_HairpinE", referenced from:
    _fill_arrays in fold.o
    _backtrack in fold.o
    _stack_energy in fold.o
    "_LoopEnergy", referenced from:
    _fill_arrays in fold.o
    _backtrack in fold.o
    _stack_energy in fold.o
    ld: symbol(s) not found for architecture x86_64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    make: *** [randfold] Error 1

    Do I need to link another library? Any ideas/suggestions?
  • ehutchins
    Junior Member
    • Feb 2011
    • 1

    #2
    I'm having the same issues. I fixed 3/4 warnings by:

    1) adding #include<string.h> to the header in the randfold.c file. This defines the strcpy and strncpy library functions (see a related stackoverflow thread here).

    2) editing line 64 of randfold.c to have '==' as requested: while (c == *++argv[0])

    With these fixes, I can run it on my Ubuntu Linux machine without issue, but I am still getting a similar error message on my OS 10.9.5 (Xcode 5.1.1) machine. I browsed some C developer forums and see that the fix could be multiple issues, and I haven't figured it out yet. I'm not a C developer myself so it's a bit beyond me, but I'll let you know if I find a full solution.




    Error after incorporating the above fix:
    $ make
    gcc -c energy_par.c
    gcc -c params.c
    gcc -c fold.c
    gcc -c fold_vars.c
    gcc -c utils.c
    gcc -O3 -I. -o randfold params.o energy_par.o fold.o fold_vars.o utils.o randfold.c -lm -lsquid
    randfold.c:148:3: warning: expression result unused [-Wunused-value]
    free_arrays;
    ^~~~~~~~~~~
    1 warning generated.
    Undefined symbols for architecture x86_64:
    "_HairpinE", referenced from:
    _fill_arrays in fold.o
    _backtrack in fold.o
    _stack_energy in fold.o
    "_LoopEnergy", referenced from:
    _fill_arrays in fold.o
    _backtrack in fold.o
    _stack_energy in fold.o
    ld: symbol(s) not found for architecture x86_64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    make: *** [randfold] Error 1

    Comment

    Latest Articles

    Collapse

    • SEQadmin2
      Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
      by SEQadmin2



      Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
      ...
      07-09-2026, 11:10 AM
    • SEQadmin2
      Cancer Drug Resistance: The Lingering Barrier to Rising Survival
      by SEQadmin2



      Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

      There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
      07-08-2026, 05:17 AM
    • GATTACAT
      Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
      by GATTACAT
      Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
      07-01-2026, 11:43 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by SEQadmin2, 07-13-2026, 10:26 AM
    0 responses
    20 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 07-09-2026, 10:04 AM
    0 responses
    30 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 07-08-2026, 10:08 AM
    0 responses
    20 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 07-07-2026, 11:05 AM
    0 responses
    34 views
    0 reactions
    Last Post SEQadmin2  
    Working...