File: align.pxd

package info (click to toggle)
obitools 3.0.1~b26%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,756 kB
  • sloc: ansic: 24,299; python: 657; sh: 27; makefile: 21
file content (18 lines) | stat: -rw-r--r-- 712 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#cython: language_level=3


cpdef align_columns(bytes dms_n, 
                    bytes input_view_1_n, 
                    bytes output_view_n,
                    bytes input_view_2_n=*,
                    bytes input_column_1_n=*, 
                    bytes input_column_2_n=*,
                    bytes input_elt_1_n=*, 
                    bytes input_elt_2_n=*,
                    bytes id_column_1_n=*, 
                    bytes id_column_2_n=*,
                    double threshold=*, bint normalize=*, 
                    int reference=*, bint similarity_mode=*,
                    bint print_seq=*, bint print_count=*,
                    bytes comments=*,
                    int thread_count=*)