Skip to content

Commit

Permalink
Oct24
Browse files Browse the repository at this point in the history
  • Loading branch information
Aone committed Oct 24, 2016
1 parent ffeee40 commit f8c863c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapt_trim.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ def __init__(self,x):
self.left = '%s' % x
self.nx = x.rsplit('/',1)[-1].rsplit('.',1)[0]
self.out_l = '-o %s_trimed.gz' % self.nx
self.read_type = '-f fastq'
self.kept_len = '-m 20'
self.adapt_l = '-a AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC'
self.adapt_r = '-A AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGATCTCGGTGGTCGCCGTATCATT'

def single_end(self):
return 'cutadapt %s %s %s %s %s' % (self.read_type, self.kept_len, self.adapt_l, self.out_l, self.left)

#def paired end algorithm
def paired_end(self,y):
self.right = '%s' % y
self.ny = y.rsplit('/',1)[-1].rsplit('.',1)[0]
Expand Down
Empty file modified tophat_cufflinks_universal.py
100644 → 100755
Empty file.

0 comments on commit f8c863c

Please sign in to comment.