Skip to content

Instantly share code, notes, and snippets.

@mdshw5
Created September 10, 2014 00:05
Show Gist options
  • Select an option

  • Save mdshw5/abb0b87681bf548815f2 to your computer and use it in GitHub Desktop.

Select an option

Save mdshw5/abb0b87681bf548815f2 to your computer and use it in GitHub Desktop.
huh?
def get_alignment(line):
col = line.split('\t')
if sam_format:
if line[0] == '@': return []
flag = col[1]
if 'u' in flag: return []
if options.unique and 's' in flag: return []
if options.pair and 'P' not in flag: return []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment