Added another example since I noticed several jobs where the user was confused about the "==" requirement.

This commit is contained in:
Greg Von Kuster
2007-02-26 20:43:31 +00:00
parent 97e5cb8f9d
commit 0191564e9b
+1
View File
@@ -44,6 +44,7 @@ The filter tool allows you to restrict the datset using simple conditional state
- **c1 == 'chr1'** selects lines in which the first column is chr1
- **c3 - c2 < 100 * c4** selects lines where subtracting column 3 from column 2 is less than the value of column 4 times 100
- **len(c2.split(',')) < 4** will select lines where the second column has less than four comma separated elements
- **c2 >= 1** selects lines in which the value of column 2 is greater than or equal to 1
</help>
</tool>