码迷,mamicode.com
首页 > 编程语言 > 详细

python批量处理

时间:2015-06-20 23:24:49      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: utf-8 -*-
"""
Created on Sat Jun 20 19:36:34 2015

@author: chaofn
"""
import os

"""
这个程序的目的是将linux下/ifs/home/fanchao/Manesh_pdb目录中的所有文件(一共有215个文件)
批处理
将pdb文件生成dssp文件

"""
#listdir返回文件名的列表
fileLine=os.listdir(/ifs/home/fanchao/Manesh_pdb)
#遍历整个列表
for i in range(len(fileLine)-1):
    #将字符串用变量表示
    input_file=/ifs/home/fanchao/Manesh_pdb/+fileLine[i]
    #先去掉文件名的后缀,然后形成后缀为dssp的文件名
    out_file=fileLine[i].split(.)[0]+.dssp
    output_file=/ifs/home/fanchao/Manesh_dssp/+out_file
    #注意:参数的传递(先是%s,然后是%变量名),多个变量的传入要用元组表示,在元组前用%
    os.system(/ifs/share/lib/dssp/dssp2 -i %s -o %s %(input_file,output_file))

 

python批量处理

标签:

原文地址:http://www.cnblogs.com/chaofn/p/4591113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!