File: test_feature_sequence_as_raw.py

package info (click to toggle)
python-pyfaidx 0.8.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 712 kB
  • sloc: python: 3,001; makefile: 16; sh: 6
file content (42 lines) | stat: -rw-r--r-- 1,415 bytes parent folder | download | duplicates (2)
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
import os
import pytest
from pyfaidx import Faidx, Fasta

path = os.path.dirname(__file__)
os.chdir(path)

@pytest.fixture
def remove_index():
    yield
    try:
        os.remove('data/genes.fasta.fai')
    except EnvironmentError:
        pass  # some tests may delete this file

def test_as_raw_false(remove_index):
    fasta = Fasta('data/genes.fasta')
    expect = 'TTGAAGATTTTGCATGCAGCAGGTGCGCAAGGTGAAATGTTCACTGTTAAA'.lower()
    result = fasta['gi|557361099|gb|KF435150.1|'][100-1:150].seq.lower()
    assert result == expect

def test_as_raw_true(remove_index):
    fasta = Fasta('data/genes.fasta', as_raw=True)
    expect = 'TTGAAGATTTTGCATGCAGCAGGTGCGCAAGGTGAAATGTTCACTGTTAAA'.lower()
    result = fasta['gi|557361099|gb|KF435150.1|'][100-1:150].lower()
    assert result == expect

def test_as_raw_false_error(remove_index):
    fasta = Fasta('data/genes.fasta')
    with pytest.raises(AttributeError):
        result = fasta['gi|557361099|gb|KF435150.1|'][100-1:150].lower()

def test_as_raw_true_error(remove_index):
    fasta = Fasta('data/genes.fasta', as_raw=True)
    with pytest.raises(AttributeError):
        result = fasta['gi|557361099|gb|KF435150.1|'][100-1:150].seq.lower()

def test_as_raw_type_when_blen_lt_0(remove_index):
    fasta = Fasta('data/genes.fasta', as_raw=True)
    expect = ''
    result = fasta.faidx.fetch('gi|557361099|gb|KF435150.1|', 10, 0)
    assert result == expect