1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
# coding: utf-8
from __future__ import print_function, division, absolute_import
import shutil
from nose.tools import raises
from cutadapt.scripts import cutadapt
from utils import run, files_equal, datapath, cutpath, redirect_stderr, temporary_path
def run_paired(params, in1, in2, expected1, expected2):
if type(params) is str:
params = params.split()
with temporary_path('tmp1-' + expected1) as p1:
with temporary_path('tmp2-' + expected2) as p2:
params += ['-o', p1, '-p', p2]
params += [datapath(in1), datapath(in2)]
assert cutadapt.main(params) is None
assert files_equal(cutpath(expected1), p1)
assert files_equal(cutpath(expected2), p2)
def run_interleaved(params, inpath1, inpath2=None, expected1=None, expected2=None):
"""
Interleaved input or output (or both)
"""
assert not (inpath1 and inpath2 and expected1 and expected2)
assert not (expected2 and not expected1)
assert not (inpath2 and not inpath1)
if type(params) is str:
params = params.split()
params += ['--interleaved']
with temporary_path('tmp1-' + expected1) as tmp1:
params += ['-o', tmp1]
paths = [datapath(inpath1)]
if inpath2:
paths += [datapath(inpath2)]
if expected2:
with temporary_path('tmp2-' + expected2) as tmp2:
params += ['-p', tmp2]
assert cutadapt.main(params + paths) is None
assert files_equal(cutpath(expected2), tmp2)
else:
assert cutadapt.main(params + paths) is None
assert files_equal(cutpath(expected1), tmp1)
def test_paired_separate():
'''test separate trimming of paired-end reads'''
run('-a TTAGACATAT', 'paired-separate.1.fastq', 'paired.1.fastq')
run('-a CAGTGGAGTA', 'paired-separate.2.fastq', 'paired.2.fastq')
def test_paired_end_legacy():
'''--paired-output, not using -A/-B/-G'''
# the -m 14 filters out one read, which should then also be filtered out in the second output file
# -q 10 should not change anything: qualities in file 1 are high enough,
# qualities in file 2 should not be inspected.
run_paired('-a TTAGACATAT -m 14 -q 10',
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired.m14.1.fastq', expected2='paired.m14.2.fastq'
)
def test_untrimmed_paired_output():
with temporary_path("tmp-untrimmed.1.fastq") as untrimmed1:
with temporary_path("tmp-untrimmed.2.fastq") as untrimmed2:
run_paired(['-a', 'TTAGACATAT',
'--untrimmed-output', untrimmed1,
'--untrimmed-paired-output', untrimmed2],
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired-trimmed.1.fastq', expected2='paired-trimmed.2.fastq'
)
assert files_equal(cutpath('paired-untrimmed.1.fastq'), untrimmed1)
assert files_equal(cutpath('paired-untrimmed.2.fastq'), untrimmed2)
def test_explicit_format_with_paired():
# Use --format=fastq with input files whose extension is .txt
with temporary_path("paired.1.txt") as txt1:
with temporary_path("paired.2.txt") as txt2:
shutil.copyfile(datapath("paired.1.fastq"), txt1)
shutil.copyfile(datapath("paired.2.fastq"), txt2)
run_paired('--format=fastq -a TTAGACATAT -m 14',
in1=txt1, in2=txt2,
expected1='paired.m14.1.fastq',
expected2='paired.m14.2.fastq'
)
def test_no_trimming_legacy():
# make sure that this doesn't divide by zero
cutadapt.main(['-a', 'XXXXX', '-o', '/dev/null', '-p', '/dev/null', datapath('paired.1.fastq'), datapath('paired.2.fastq')])
def test_no_trimming():
# make sure that this doesn't divide by zero
cutadapt.main(['-a', 'XXXXX', '-A', 'XXXXX', '-o', '/dev/null', '-p', '/dev/null', datapath('paired.1.fastq'), datapath('paired.2.fastq')])
@raises(SystemExit)
def test_missing_file():
with redirect_stderr():
cutadapt.main(['-a', 'XX', '--paired-output', 'out.fastq', datapath('paired.1.fastq')])
@raises(SystemExit)
def test_first_too_short():
with temporary_path("truncated.1.fastq") as trunc1:
# Create a truncated file in which the last read is missing
with open(datapath('paired.1.fastq')) as f:
lines = f.readlines()
lines = lines[:-4]
with open(trunc1, 'w') as f:
f.writelines(lines)
with redirect_stderr():
cutadapt.main('-a XX -o /dev/null --paired-output out.fastq'.split() + [trunc1, datapath('paired.2.fastq')])
@raises(SystemExit)
def test_second_too_short():
with temporary_path("truncated.2.fastq") as trunc2:
# Create a truncated file in which the last read is missing
with open(datapath('paired.2.fastq')) as f:
lines = f.readlines()
lines = lines[:-4]
with open(trunc2, 'w') as f:
f.writelines(lines)
with redirect_stderr():
cutadapt.main('-a XX -o /dev/null --paired-output out.fastq'.split() + [datapath('paired.1.fastq'), trunc2])
@raises(SystemExit)
def test_unmatched_read_names():
with temporary_path("swapped.1.fastq") as swapped:
# Create a file in which reads 2 and are swapped
with open(datapath('paired.1.fastq')) as f:
lines = f.readlines()
lines = lines[0:4] + lines[8:12] + lines[4:8] + lines[12:]
with open(swapped, 'w') as f:
f.writelines(lines)
with redirect_stderr():
cutadapt.main('-a XX -o out1.fastq --paired-output out2.fastq'.split() + [swapped, datapath('paired.2.fastq')])
@raises(SystemExit)
def test_p_without_o():
"""Option -p given but -o missing"""
cutadapt.main('-a XX -p /dev/null'.split() + [datapath('paired.1.fastq'), datapath('paired.2.fastq')])
@raises(SystemExit)
def test_paired_but_only_one_input_file():
"""Option -p given but only one input file"""
cutadapt.main('-a XX -o /dev/null -p /dev/null'.split() + [datapath('paired.1.fastq')])
def test_legacy_minlength():
'''Ensure -m is not applied to second read in a pair in legacy mode'''
run_paired('-a XXX -m 27',
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired-m27.1.fastq', expected2='paired-m27.2.fastq'
)
def test_paired_end():
'''single-pass paired-end with -m'''
run_paired('-a TTAGACATAT -A CAGTGGAGTA -m 14',
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired.1.fastq', expected2='paired.2.fastq'
)
def test_paired_anchored_back_no_indels():
run_paired("-a BACKADAPTER$ -A BACKADAPTER$ -N --no-indels",
in1='anchored-back.fasta', in2='anchored-back.fasta',
expected1='anchored-back.fasta', expected2="anchored-back.fasta"
)
def test_paired_end_qualtrim():
'''single-pass paired-end with -q and -m'''
run_paired('-q 20 -a TTAGACATAT -A CAGTGGAGTA -m 14 -M 90',
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='pairedq.1.fastq', expected2='pairedq.2.fastq'
)
def test_paired_end_qualtrim_swapped():
'''single-pass paired-end with -q and -m, but files swapped'''
run_paired('-q 20 -a CAGTGGAGTA -A TTAGACATAT -m 14',
in1='paired.2.fastq', in2='paired.1.fastq',
expected1='pairedq.2.fastq', expected2='pairedq.1.fastq'
)
def test_paired_end_cut():
run_paired('-u 3 -u -1 -U 4 -U -2',
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='pairedu.1.fastq', expected2='pairedu.2.fastq'
)
def test_paired_end_A_only():
run_paired('-A CAGTGGAGTA',
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired-onlyA.1.fastq', expected2='paired-onlyA.2.fastq'
)
def test_discard_untrimmed():
# issue #146
# the first adapter is a sequence cut out from the first read
run_paired('-a CTCCAGCTTAGACATATC -A XXXXXXXX --discard-untrimmed',
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='empty.fastq', expected2='empty.fastq'
)
def test_discard_trimmed():
run_paired('-A C -O 1 --discard-trimmed', # applies everywhere
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='empty.fastq', expected2='empty.fastq'
)
def test_interleaved_in_and_out():
'''Single-pass interleaved paired-end with -q and -m'''
run_interleaved('-q 20 -a TTAGACATAT -A CAGTGGAGTA -m 14 -M 90',
inpath1='interleaved.fastq', expected1='interleaved.fastq'
)
def test_interleaved_in():
'''Interleaved input, two files output'''
run_interleaved('-q 20 -a TTAGACATAT -A CAGTGGAGTA -m 14 -M 90',
inpath1='interleaved.fastq',
expected1='pairedq.1.fastq', expected2='pairedq.2.fastq'
)
def test_interleaved_out():
'''Two files input, interleaved output'''
run_interleaved('-q 20 -a TTAGACATAT -A CAGTGGAGTA -m 14 -M 90',
inpath1='paired.1.fastq', inpath2='paired.2.fastq',
expected1='interleaved.fastq'
)
@raises(SystemExit)
def test_interleaved_neither_nor():
"""Option --interleaved used, but pairs of files given for input and output"""
with temporary_path("temp-paired.1.fastq") as p1:
with temporary_path("temp-paired.2.fastq") as p2:
params = '-a XX --interleaved'.split()
with redirect_stderr():
params += [ '-o', p1, '-p1', p2, 'paired.1.fastq', 'paired.2.fastq']
cutadapt.main(params)
def test_pair_filter():
run_paired('--pair-filter=both -a TTAGACATAT -A GGAGTA -m 14',
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired-filterboth.1.fastq', expected2='paired-filterboth.2.fastq'
)
def test_too_short_paired_output():
with temporary_path("temp-too-short.1.fastq") as p1:
with temporary_path("temp-too-short.2.fastq") as p2:
run_paired('-a TTAGACATAT -A CAGTGGAGTA -m 14 --too-short-output '
'{0} --too-short-paired-output {1}'.format(p1, p2),
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired.1.fastq', expected2='paired.2.fastq'
)
assert files_equal(cutpath('paired-too-short.1.fastq'), p1)
assert files_equal(cutpath('paired-too-short.2.fastq'), p2)
def test_too_long_output():
with temporary_path("temp-too-long.1.fastq") as p1:
with temporary_path("temp-too-long.2.fastq") as p2:
run_paired('-a TTAGACATAT -A CAGTGGAGTA -M 14 --too-long-output '
'{0} --too-long-paired-output {1}'.format(p1, p2),
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired-too-short.1.fastq', expected2='paired-too-short.2.fastq'
)
assert files_equal(cutpath('paired.1.fastq'), p1)
assert files_equal(cutpath('paired.2.fastq'), p2)
@raises(SystemExit)
def test_too_short_output_paired_option_missing():
with temporary_path("temp-too-short.1.fastq") as p1:
run_paired('-a TTAGACATAT -A CAGTGGAGTA -m 14 --too-short-output '
'{0}'.format(p1),
in1='paired.1.fastq', in2='paired.2.fastq',
expected1='paired.1.fastq', expected2='paired.2.fastq'
)
|