Hey,
if you have data, where the filename is like "_F3.csfasta" there should be a corresponding "_F3.qual" file. Both files together are your reads, coming out the sequencer. Now, depending on which sequencing plattform has been used, you have "create/apply" your "pipeline".
In the case that you are working on a whole genome project, the data should be whole genome seq..
The infix F3.xxx is meaning that these are single end reads, paired end would be R3.xxx.
First of all you should search for a pipeline, with the attributes of single end reads, your seq plattform and whole genome seq. You will find some ;)
So the steps would be:
- Map your data to a reference (search for "hg18" or "hg19", human genome - 19 is newer) using maybe BWA
- Call your SNPs, GATK or samtools
- Annotate your SNPs, this is, also like the mapping, a science by itself. ATM I am using NGS-SNP.
These are the real basic steps.