Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for chavanak

Hi, I have written a script which parses a UTF-8 text file and prints the required result. The code is below: [CODE] import os import sys import string import csv import codecs usage = "usage: Specify the directories for files and the RDOCK cut-off value" tm_append=[] if len(sys.argv) < 1: …

Member Avatar for Beat_Slayer
0
1K
Member Avatar for chavanak

Hi guys, I have a list which I have obtained from a python script. the content of the list goes something like [CODE] d.complex.1 24 25 67 123 764 d.complex.2 23 54 35 64 d.complex.3 . . . [/CODE] I want to split this list such that, a new list …

Member Avatar for vegaseat
0
87
Member Avatar for chavanak

Hi, I have written a python script that acts as a wrapper around an executable. Here is the code: [CODE] import os import sys import string import csv usage = "usage: Specify the directories for files and the RDOCK cut-off value" if len(sys.argv) < 4: print usage sys.exit() else: first_folder …

0
66
Member Avatar for chavanak

Hi, I am comparing 2000 files with one other file. I want the program to go through each line in both files and compare. If the line is present, then it has to write to another file. What I tried was to open both the files and use readlines() to …

Member Avatar for chavanak
0
332