Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bchen4 committed Oct 8, 2014
1 parent 697502d commit eaa34c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/findMutation.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import pysam
from pysam import *
import argparse as ap
"""

def prepare_argparser():
description = "Find mutations"
epilog = "For command line options of each command, type %(prog)s COMMAND -h"
Expand All @@ -22,7 +22,7 @@ def prepare_argparser():
argparser.add_argument("-o","--output",dest = "outfile", type = str,required = True, help = "output file, default is stdout")
argparser.add_argument("-p",dest = "par", type = int,default = 0, help = "CLIP type, output will only contain specific mutations. 0 for HITS-CLIP, 1 for PAR-CLIP (T->C) and 2 for PAR-CLIP (G->A)")
return(argparser)
"""

class findMutationRunner:
def __init__(self,inputFile,outputFile,par):
self.inputFile = inputFile
Expand Down

0 comments on commit eaa34c0

Please sign in to comment.