Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Question about python script generating synthetic sequences

    Hi all,

    I'm trying to replicate a Nature Protocols paper: genome-wide copy number analysis of single cells from Baslan et al., 2012.
    In step 69 they generate synthetic 50 bp reads for each position on the hg19 genome: start at position one in the chromosome sequence and take the first 50 bases. Also create read ID strings and quality score strings. These can be Illumina or fastq format. Output these to a file and continue likewise at positions 2, 3, 4 and so on until the end of the chromosome is reached.
    The script to do this can be found in the supplementary data, and I've pasted it below:

    #!/usr/bin/env python

    import re
    import sys
    import random
    import string

    def main():

    CHROMLIST = open("/filepath/chromlist.txt", "r")

    chromlist = []
    for x in CHROMLIST:
    if x.rstrip().find("_") == -1:
    chromlist.append(x.rstrip())

    INFILE = False
    OUTFILE = open("/filepath/sequence.part.0.k50.txt", "w")
    outfilecount = 0
    counter = 0

    for chrFile in chromlist:
    a = chrFile.split("/")
    b = a[len(a) - 1]
    thisChrom = b.split(".")[0]

    if INFILE:
    INFILE.close()
    INFILE = open(chrFile, "r")
    chr = []
    x = ""
    y = ""
    INFILE.readline()
    for x in INFILE:
    chr.append(x.rstrip())
    x = "".join(chr)
    y = x.upper()
    print "after read " + thisChrom
    sys.stdout.flush()

    for i in range(len(y) - 50):
    counter += 1
    thisRead = y[i: (i+50)]

    if counter % 150000000 == 0:
    OUTFILE.close()
    outfilecount += 1
    OUTFILE = open("/filepath/sequence.part." + str(outfilecount) + ".k50.txt", "w")

    OUTFILE.write("@" + thisChrom + "." + str(i))
    OUTFILE.write("\n")
    OUTFILE.write(thisRead)
    OUTFILE.write("\n")
    OUTFILE.write("+" + thisChrom + "." + str(i))
    OUTFILE.write("\n")
    OUTFILE.write("b" * len(thisRead))
    OUTFILE.write("\n")

    INFILE.close()

    OUTFILE.close()


    if __name__ == "__main__":
    main()


    I don't have a lot of experience with python, and when I run this script (after adapting the filepath), I only get 1 empty file. Is there something else I need to adapt?

    Many thanks in advance,
    Lien
    Last edited by GenoMax; 04-18-2016, 02:57 AM. Reason: Moved post to a new thread to increase visibility

  • #2
    For reference cross-posted: https://www.biostars.org/p/187267/

    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...
      04-22-2024, 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, Today, 11:49 AM
    0 responses
    13 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, Yesterday, 08:47 AM
    0 responses
    16 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-11-2024, 12:08 PM
    0 responses
    61 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 10:19 PM
    0 responses
    60 views
    0 likes
    Last Post seqadmin  
    Working...
    X