Entering edit mode
4.0 years ago
LacquerHed
▴
30
Pretty basic question, but if dealing with a list of common gene names any quick way to filter out all TFs on the list? Thanks!
There should be a GO term related to transcription factors that you could intersect your list with. Or something like "DNA binding" as GO term.
If you can get access to TRANSFAC you could get a list of HUGO names from their database. If your list contains HUGO names, it is just a
grep -v
statement against this list.