Thanks, Steven. Initially I suggested my technician that I will take all cancer samples( sample1,3,5,7,9,11,13,15) and all normal samples(sample2,4,6,8,10,12,14) together and perform a single two-group comparison. In that case, the p-value will be of much use.
But my technician told to compare, 15 pairwise comparisons, b'cos he wants to look into the patient specific differential gene expression and their associated mutations. As you suggested, I will disregard the p-value and consider the log2_fold_change values. The other person told me to use DESeq2 package. I have used the following commands.
Can I consider value "1" of log_fold_change for filtering genes?
Step1: Using read.table, I read the htseq_count output file for cancer and normal in a single file
countsTable = read.table(file.txt)
countsTableMatrix = as.matrix(countsTable)
condition = c("Cancer","Normal")
coldata = data.frame(row.names=colnames(countsTableMatrix), condition)
dds = DESeqDataSetFromMatrix(countData=countsTableMatrix, colData=coldata, design=~condition)
dds = DESeq(dds) estimating size factors, estimating dispersions, gene-wise dispersion estimates, mean-dispersion relationship, final dispersion estimates, fitting model and testing,
Warning message: In checkForExperimentalReplicates(object, modelMatrix) : same number of samples and coefficients to fit, estimating dispersion by treating samples as replicates. read the ?DESeq section on 'Experiments without replicates'
res = results(dds)
resdata = merge(as.data.frame(res),as.data.frame(counts(dds,normalized=TRUE)),by="row.names",sort=FALSE)
colnames(restate)
1)Gene, 2)baseMean, 3) log2FoldChange, 4)lfcSE, 5) stat, 6)value, 7) pads
upreg_gene_1fold = subset(resdata, log2FoldChange >=1)
downreg_gene_1fold = subset(resdata, log2FoldChange <=-1)

There is no such thing as "looks significant". Depending on a pre-set cut off on the adjusted p-value your results are either significant or aren't. Furthermore, size of log fold change doesn't say anything about significance.
Thanks, as I don't have replicates. Instead of p-value, I am planning to consider log fold change value for my analysis.
If you are using DESeq R package, I would advice you to use DESeq2 (http://www.bioconductor.org/packages/release/bioc/html/DESeq2.html).
Thanks, now I am using DESeq2 package.