Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • 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;
    }
    }

  • #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


    • #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


      • #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


        • #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


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

            Comment

            Latest Articles

            Collapse

            • seqadmin
              Strategies for Sequencing Challenging Samples
              by seqadmin


              Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
              03-22-2024, 06:39 AM
            • seqadmin
              Techniques and Challenges in Conservation Genomics
              by seqadmin



              The field of conservation genomics centers on applying genomics technologies in support of conservation efforts and the preservation of biodiversity. This article features interviews with two researchers who showcase their innovative work and highlight the current state and future of conservation genomics.

              Avian Conservation
              Matthew DeSaix, a recent doctoral graduate from Kristen Ruegg’s lab at The University of Colorado, shared that most of his research...
              03-08-2024, 10:41 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, Yesterday, 06:37 PM
            0 responses
            11 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, Yesterday, 06:07 PM
            0 responses
            10 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 03-22-2024, 10:03 AM
            0 responses
            51 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 03-21-2024, 07:32 AM
            0 responses
            68 views
            0 likes
            Last Post seqadmin  
            Working...
            X