Metagenomics
Search this site
Metagenomics
Wiki
Tools
16S tools
Assembly
BLAST
Bowtie2
Genome
Pathogen screening
Phylogenetic tree
SAMtools
Sequence data
Shotgun sequencing
Ubuntu/Linux server
Tools
>
Ubuntu/Linux server
>
word frequencies
Get for each name (word/string) in a list the frequency of it's occurrence (sorted)
Count the number of repeats for each ID in the list
sort
list.txt
|
uniq -c
| awk '{print $2"\t"$1}' | sort -rnk 2