diff options
| author | mutantturkey <mutantturke@gmail.com> | 2013-02-15 07:42:12 -0500 | 
|---|---|---|
| committer | mutantturkey <mutantturke@gmail.com> | 2013-02-15 07:42:12 -0500 | 
| commit | 6d656a43639e837067d03ba59665bcfe0d4b87b9 (patch) | |
| tree | e5d1fb1d5c02c570efc40f9d1b9f3b70def4a77f | |
| parent | 4ee0e4ed69e5244bfba7ef83ba0d34e6c23067da (diff) | |
added some comments
| -rw-r--r-- | quikr.py | 8 | 
1 files changed, 3 insertions, 5 deletions
| @@ -11,10 +11,10 @@ def main():      parser = argparse.ArgumentParser(description=      "Quikr returns the estimated frequencies of batcteria present when given a \ -     input FASTA file. \n \ +    input FASTA file. \n \      A default trained matrix will be used if none is supplied \n \      You must supply a kmer and default lambda if using a custom trained \ -    matrix. ") +    matrix.")      parser.add_argument("-f", "--fasta", help="path to a fasta file", required=True)      parser.add_argument("-t", "--trained-matrix", help="path to a custom trained matrix") @@ -30,8 +30,6 @@ def main():      if not os.path.isfile(args.fasta):          parser.error( "Input fasta file not found") - -      # If we are using a custom trained matrix, we need to do some basic checks      if args.trained is not None:   @@ -43,7 +41,7 @@ def main():          if args.lamb is None:              # use 10,000 as default Lambda              input_lambda = 10000 - +    # If we aren't using a custom trained matrix, load in the defaults      else:          trained_matrix_location = "trainset7_112011N6Aaux.mat"          input_lambda = 10000 | 
