I tried some stuff but it didnt work. I used ChatGPT, because I'm not good at this. I tried sorting of the two files first
Sort the input files by the tokumei column
sort -t ',' -k1,1 file1.csv > sorted1.csv
sort -t ',' -k1,1 Database_cleaned.csv > sorted2.csv
And then joining them.
Join the two CSV files on the "tokumei" column
join -t ',' -1 1 -2 1 sorted1.csv sorted2.csv > merged.csv
For file1 sorting gave me a clean new sorted file but for file2 out of the 30000 values the first 700 return N/A. Also the join function created merged.csv file was completely blank. Im sorry for reacting so late but the software that we normally use for this was supposedly fixed until this monday I realized it was broken. Please if you could help I would really appreciate it. Thanks
Thank you, I'll take a look at both of these :)
I don't see any relevance to bioinformatics in this thread.