https://github.com/functional-dark-side/agnostos-wf
Raw File
Tip revision: 5f9e23e8ac524a533f81c57e500a60b56191b1f5 authored by Chiara Vanni on 24 February 2022, 09:54:19 UTC
Create .DS_Store
Tip revision: 5f9e23e
evalue_filter.awk
#!/bin/awk -f

{
 if ($1 in array) {
	A=array[$1]
	L=(log($11)/log(10));
	 if(L <= A) {
		print $0;
	}
}else{
	L=P*(log($11)/log(10));
	array[$1]=L;
	print $0;
     }
}
back to top