Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Error while python code terse

    Hi Members,

    I am having a hard time with python code, making it terse. One liners. I see a lot on stackoverflow using lambda. I am unable to cope up with it.

    Would really appreciate any input in this regard.

    So here is how I am running the file.
    python read_pdb_file.py 1iw6.pdb 1m0l.pdb
    Code:
    def checkExtension2(*file_name):
    # trying to shrink the code..
        [print i+" doesn't end with .pdb" for i in file_name if not i.endswith(".pdb")]
    
    
    def checkExtension(*file_name): # this runs fine
        for i in file_name: 
            if not i.endswith(".pdb"):
                print i+" doesn't end with .pdb"
                sys.exit(1)
    
    if __name__=="__main__":
        checkExtension2(sys.argv[1],sys.argv[2])
    Error:
    [print i+" doesn't end with .pdb" for i in file_name if not i.endswith(".pdb")]
    ^
    SyntaxError: invalid syntax

    Please advise.
    Bioinformaticscally calm

  • #2
    It doesn't know what to do with the print inside the list comprehension.

    If you really want it in one line, how about:

    To print the first one:
    Code:
    print [i+" doesn't end with .pdb" for i in file_name if not i.endswith(".pdb")][0]
    To print all:
    Code:
    print '\n'.join([i+" doesn't end with .pdb" for i in file_name if not i.endswith(".pdb")])
    Last edited by cliffbeall; 10-22-2014, 10:52 AM. Reason: To put in 2nd case

    Comment


    • #3
      Thanks for replying.
      Could you please elaborate why and what is happening?
      I work a lot on file parsing. A lot of code is to check/verfify, and I want to polish my coding on them.
      Bioinformaticscally calm

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Recent Advances in Sequencing Analysis Tools
        by seqadmin


        The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
        Yesterday, 07:48 AM
      • 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

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Today, 06:57 AM
      0 responses
      4 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, Yesterday, 07:17 AM
      0 responses
      13 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 05-02-2024, 08:06 AM
      0 responses
      19 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-30-2024, 12:17 PM
      0 responses
      21 views
      0 likes
      Last Post seqadmin  
      Working...
      X