Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • gprakhar
    Member
    • Aug 2010
    • 78

    CNV Simulator -- Random Number Generation

    Hello,

    I have written a program to simulate CNV, into the reference genome.

    It take the Reference Genome/Chromosome as input. The program then generates a Random number(X), copies the segment from that position(X), size specified by user.
    Then generates another random number(Y), and inserts the copied segment from X position, at Y position. The output is the modified input file with inserted CNV and a txt file with Location of CNVs ie. position where copied from (X) and where Inserted (Y).

    I give the Random Number generation function MIN and MAX value. MIN =1 and MAX=last Position(Size), it then generates a Random number within these limits.
    Problem is, with same input(MIN & MAX) the random numbers generated is same. eg. If I make my program run once and generate 100 numbers, they are random. But if I generate 100 numbers by running the program again, the numbers are same as before.

    CODE:
    //call this function first to seed
    void initialize_rand(){
    srand((unsigned)(time(0)));
    }

    //generates a psuedo-random integer between min and max
    long int randint(long int min, long int max){
    if(min>max){
    return lrand48()%(min-max)+max;
    }
    else{
    return lrand48()%(max-min)+min;
    }
    }
  • gprakhar
    Member
    • Aug 2010
    • 78

    #2
    PS

    I know this is not a C programming forum.
    Googled the problem, but didn't find anything useful.
    But as many of the member here have dealt with similar situation, hence I thought of asking here.

    Comment

    • simonandrews
      Simon Andrews
      • May 2009
      • 870

      #3
      Originally posted by gprakhar View Post
      Problem is, with same input(MIN & MAX) the random numbers generated is same. eg. If I make my program run once and generate 100 numbers, they are random. But if I generate 100 numbers by running the program again, the numbers are same as before.
      If that's happening then it means your RNG is using the same seed value each time. I'm not a C programmer but I suspect that time(0) returns the same value each time and that you probably want to use time(NULL) to get the current time value so the seed is different each time.

      Comment

      • quinlana
        Senior Member
        • Sep 2008
        • 119

        #4
        Your issue is likely that the time() function has granularity to the second. If you make multiple calls to you program in the same second, the results will be identical. The following will seed based on time and process_id on POSIX systems. Therefore, for a given boot cycle, you are guaranteed not to have redundant seeds

        Code:
        srand((unsigned)time(0)+(unsigned)getpid())
        You'll need to include the following fir getpud():

        Code:
        #include <unistd.h>
        Last edited by quinlana; 01-28-2011, 11:20 AM. Reason: typo

        Comment

        • gprakhar
          Member
          • Aug 2010
          • 78

          #5
          Solved

          Thank you everyone for the reply.

          I made the change suggested by "quinlana".
          Also changed the seeding function to srand48().
          Every thing is working fine now.

          Comment

          • adurasiwam3
            Member
            • Apr 2012
            • 12

            #6
            is your program available for download? i would like to generate simulated CNV

            Comment

            Latest Articles

            Collapse

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, 06-05-2026, 10:09 AM
            0 responses
            15 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-04-2026, 08:59 AM
            0 responses
            33 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-02-2026, 12:03 PM
            0 responses
            35 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-02-2026, 11:40 AM
            0 responses
            23 views
            0 reactions
            Last Post SEQadmin2  
            Working...