File: wfa.alg.cmp.score.sh

package info (click to toggle)
libwfa2 2.3.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,072 kB
  • sloc: ansic: 13,812; python: 540; cpp: 500; makefile: 268; sh: 176; lisp: 41
file content (14 lines) | stat: -rwxr-xr-x 346 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
# PROJECT: Wavefront Alignments Algorithms 
# LICENCE: MIT License 
# AUTHOR(S): Santiago Marco-Sola <santiagomsola@gmail.com>
# DESCRIPTION: Compare alignment files (*.alg)
# USAGE: ./wfa.alg.cmp.score.sh file1.alg file2.alg

# Parameters
FILE1=$1
FILE2=$2

# Compare
diff  <( awk '{print $1}' $FILE1 ) <( awk '{print $1}' $FILE2 )