I have 2 sets of data that look like this:
file1:
file2:
file2 is a subset of file1. I would like to extract the lines that are in file1 but not in file2.
The outfile should look like this:
thank you for your help
file1:
Code:
>s_7_2x1
AAAAAAAAAGTTGGTCTTG
>s_7_24x2
AAAAAAAAGGTCGGGCCTGGTT
>s_7_3x3
AAAAAAACAGAGTTCA
>s_7_4x4
AAAAAAACATGGCGCACTTCTT
>s_7_5x5
AAAAAAACATGGNGCACTTCTTTTCGCNTGGCGGC
Code:
>s_7_2x1
AAAAAAAAAGTTGGTCTTG
>s_7_24x2
AAAAAAAAGGTCGGGCCTGGTT
The outfile should look like this:
Code:
>s_7_3x3
AAAAAAACAGAGTTCA
>s_7_4x4
AAAAAAACATGGCGCACTTCTT
>s_7_5x5
AAAAAAACATGGNGCACTTCTTTTCGCNTGGCGGC
thank you for your help