Une dois arquivos com colunas correspondentes

10

Arquivo1.txt

    id                            No
    gi|371443199|gb|JH556661.1| 7907290
    gi|371443198|gb|JH556662.1| 7573913
    gi|371443197|gb|JH556663.1| 7384412
    gi|371440577|gb|JH559283.1| 6931777

Arquivo2.txt

 id                              P       R       S
 gi|367088741|gb|AGAJ01056324.1| 5       5       0
 gi|371443198|gb|JH556662.1|     2       2       0
 gi|367090281|gb|AGAJ01054784.1| 4       4       0
 gi|371440577|gb|JH559283.1|     21      19      2

output.txt

 id                              P       R       S  NO
 gi|371443198|gb|JH556662.1|     2       2       0  7573913
 gi|371440577|gb|JH559283.1|     21      19      2  6931777

O arquivo1.txt tem duas colunas & O arquivo2.txt tem quatro colunas. Eu quero juntar ambos os arquivos que tem id único (array [1] deve corresponder em ambos os arquivos (file1.txt & arquivo2.txt) e dê a saída apenas id correspondente (veja o output.txt).

Eu tentei join -v <(sort file1.txt) <(sort file2.txt) . Qualquer ajuda com o awk ou junte comandos solicitados.

    
por jack 18.07.2012 / 22:27

2 respostas

17

join funciona muito bem:

$ join <(sort File1.txt) <(sort File2.txt) | column -t | tac
 id                           No       P   R   S
 gi|371443198|gb|JH556662.1|  7573913  2   2   0
 gi|371440577|gb|JH559283.1|  6931777  21  19  2

ps. faz questão de ordem de colunas?

se sim use:

$ join <(sort 1) <(sort 2) | tac | awk '{print $1,$3,$4,$5,$2}' | column -t
 id                           P   R   S  No
 gi|371443198|gb|JH556662.1|  2   2   0  7573913
 gi|371440577|gb|JH559283.1|  21  19  2  6931777
    
por 18.07.2012 / 23:09
10

Uma maneira de usar awk :

Conteúdo de script.awk :

## Process first file of arguments. Save 'id' as key and 'No' as value
## of a hash.
FNR == NR {
    if ( FNR == 1 ) { 
        header = $2
        next
    }   
    hash[ $1 ] = $2
    next
}

## Process second file of arguments. Print header in first line and for
## the rest check if first field is found in the hash.
FNR < NR {
    if ( $1 in hash || FNR == 1 ) { 
        printf "%s %s\n", $0, ( FNR == 1 ? header : hash[ $1 ] ) 
    }   
}

Execute como:

awk -f script.awk File1.txt File2.txt | column -t

Com o seguinte resultado:

id                           P   R   S  NO
gi|371443198|gb|JH556662.1|  2   2   0  7573913
gi|371440577|gb|JH559283.1|  21  19  2  6931777
    
por 18.07.2012 / 22:59

Tags