We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8fcebd commit d490f65Copy full SHA for d490f65
test/runtests.jl
@@ -16,8 +16,8 @@ nr002726 = fetchseq("NR_002726.2", 10:20)
16
nr002726rev = fetchseq("NR_002726.2", 10:20, false)
17
@test length(nr002726) == 1
18
@test typeof(nr002726[1]) == FASTA.Record
19
-@test length(sequence(nr002726[1])) == 11
20
-@test length(sequence(nr002726rev[1])) == 11
21
-@test map(x -> x == 'G' ? 'C' : x == 'C' ? 'G' : x == 'T' ? 'A' : x == 'A' ? 'T' : x, sequence(nr002726[1])) == sequence(nr002726rev[1])
+@test length(FASTX.sequence(nr002726[1])) == 11
+@test length(FASTX.sequence(nr002726rev[1])) == 11
+@test map(x -> x == 'G' ? 'C' : x == 'C' ? 'G' : x == 'T' ? 'A' : x == 'A' ? 'T' : x, FASTX.sequence(nr002726[1])) == FASTX.sequence(nr002726rev[1])
22
23
@test length(fetchseq("ENSG00000141510")) == 42
0 commit comments