I have been learning Java for a few months now, and I am faced with a problem that I need some help on. I have a user input file that has many entries in the form:
>Item1 Description
DILDEQCLKGACQGTSVVIHTA
>Item2 Description
DILDEQCLKGACQGTSVVIHTASVIDVRNAV
>Item3 Description
AEKAGTS
>Item4 Description
RNAVPRHESAW
There might be up to 100 items in this file. It's a basic text file and the capitalized sequences will vary depending on the item. I think other readers/parsers rely on the '>' to start the next entry. I suppose I should too.
My goal is to produce a new file from the user input file that contains the same >ItemX Description line but the sequence of letters needs to be reversed. I have experimenting with Scanner, FileInputStream, DataInputStream, and BufferedReader. Not sure what the best way to do this would be and the most efficient.
How should I load these data so that I can reverse the string most easily? It seems there are so many ways to input data, I just seem to be getting more and more lost... I have a string reverser that seems to work, so my goal now is to get these data loaded and then convert to a string for reversal.
Thanks in advance for any assistance.
NOTE - here is what one of these entries might look like:
>41_BOVIN (Q9N179) Protein 4.1 (Band 4.1) (P4.1) (4.1R)
MHCKVSLLDDTVYECVVEKHAKGQDLLKRVCEHLNLLEEDYFGLAIWDNATSKTWLDSAK
EIKKQVRGVPWNFTFNVKFYPPDPAQLTEDITRYYLCLQLRQDIVSGRLPCSFATLALLG
SYTIQSELGDYDPELHGADYVSDFKLAPNQTKELEEKVMELHKSYRSMTPAQADLEFLEN
AKKLSMYGVDLHKAKDLEGVDIILGVCSSGLLVYKEKLRINRFPWPKVLKISYKRSSFFI
KIRPGEQEQYESTIGFKLPSYRAAKKLWKVCVEHHTFFRLTSTDTIPKSKFLALGSKFRY
SGRTQAQTRQASALIDRPAPHFERTASKRASRSLDGAAAVEPADRTPRPTSAPAIAPSPA
AEGGVPGAPVKKAQKETVQVEVKQEEAPPEDAEPEPSEAWKKKRERLDGENIYIRHSNLM
LEDLDKSQEEIKKHHASISELKKNFMESVPEPRPSEWDKRLSTHSPFRTLNINGQIPTGE
GPPLVKTQTVTISDTANAVKSEIPTKDVPIVHTETKTITYEAAQTDDSNGDLDPGVLLTA
QTITSETTSSTTTTQITKTVKGGISETRIEKRIVITGDADIDHDQVLVQAIKEAKEQHPD
So I would need to make lines 2 through 12 into one big string and then reverse that.