File: fastdp_include.rb

package info (click to toggle)
genomethreader 1.7.3%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 46,528 kB
  • sloc: ansic: 90,168; ruby: 1,769; makefile: 548; sh: 112; perl: 105
file content (74 lines) | stat: -rw-r--r-- 3,081 bytes parent folder | download | duplicates (4)
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
Name "fastdp 01"
Keywords "gth fastdp"
Test do
  run_test "#{$bin}gth -genomic #{$testdata}U89959_genomic.fas " +
           "-cdna #{$testdata}gth/fastdp_01.fas -fastdp"
end

Name "fastdp (U89959)"
Keywords "gth fastdp"
Test do
  run_test "#{$bin}gth -species arabidopsis " +
           "-genomic #{$testdata}U89959_genomic.fas " +
           "-cdna #{$testdata}U89959_ests.fas -gff3out -intermediate " +
           "-fastdp", :maxtime => 300
  run "diff --strip-trailing-cr #{$last_stdout} #{$testdata}U89959_sas_fast.gff3"
end

Name "fastdp (U89959, introncutout)"
Keywords "gth fastdp"
Test do
  run_test "#{$bin}gth -species arabidopsis " +
           "-genomic #{$testdata}U89959_genomic.fas " +
           "-cdna #{$testdata}U89959_ests.fas -gff3out -intermediate " +
           "-fastdp -introncutout", :maxtime => 300
  run "diff --strip-trailing-cr #{$last_stdout} #{$testdata}U89959_sas_fast_ic.gff3"
end

if $gthtestdata then
  Name "fastdp (unused)"
  Keywords "gth fastdp diss"
  Test do
    run_test "#{$bin}gth -bssm #{$gthtestdata}ngasp/ngasp -enrichchains " +
             "-scoreminexonlen 1 -maskpolyatails -dpminintronlen 10 " +
             "-gcmaxgapwidth 22000 -gff3out -intermediate " +
             "-genomic #{$gthtestdata}ngasp32/training_regions.fa " +
             "-cdna #{$gthtestdata}ngasp32/rna_small.fa", :maxtime => 300
    run "diff --strip-trailing-cr #{$last_stdout} #{$gthtestdata}ngasp/rna_small.gff3"
  end

  Name "fastdp (-fastdp)"
  Keywords "gth fastdp diss"
  Test do
    run_test "#{$bin}gth -bssm #{$gthtestdata}ngasp/ngasp -enrichchains " +
             "-scoreminexonlen 1 -maskpolyatails -dpminintronlen 10 " +
             "-gcmaxgapwidth 22000 -gff3out -intermediate " +
             "-genomic #{$gthtestdata}ngasp32/training_regions.fa " +
             "-cdna #{$gthtestdata}ngasp32/rna_small.fa -fastdp",
             :maxtime => 120
    run "diff --strip-trailing-cr #{$last_stdout} #{$gthtestdata}ngasp/rna_small_fast.gff3"
  end

  Name "fastdp (-introncutout)"
  Keywords "gth fastdp diss"
  Test do
    run_test "#{$bin}gth -bssm #{$gthtestdata}ngasp/ngasp -enrichchains " +
             "-scoreminexonlen 1 -maskpolyatails -dpminintronlen 10 " +
             "-gcmaxgapwidth 22000 -gff3out -intermediate " +
             "-genomic #{$gthtestdata}ngasp32/training_regions.fa " +
             "-cdna #{$gthtestdata}ngasp32/rna_small.fa -introncutout",
             :maxtime => 120
    run "diff --strip-trailing-cr #{$last_stdout} #{$gthtestdata}ngasp/rna_small_ic.gff3"
  end

  Name "fastdp (-fastdp -introncutout)"
  Keywords "gth fastdp diss"
  Test do
    run_test "#{$bin}gth -bssm #{$gthtestdata}ngasp/ngasp -enrichchains " +
             "-scoreminexonlen 1 -maskpolyatails -dpminintronlen 10 " +
             "-gcmaxgapwidth 22000 -gff3out -intermediate " +
             "-genomic #{$gthtestdata}ngasp32/training_regions.fa " +
             "-cdna #{$gthtestdata}ngasp32/rna_small.fa -fastdp -introncutout"
    run "diff --strip-trailing-cr #{$last_stdout} #{$gthtestdata}ngasp/rna_small_fast_ic.gff3"
  end
end