I am trying to analyze some RNA-seq data. I imported pair-end data from NCBI using fasterq-dump, filtered with fastp then performed a bowtie2 alignment on this. I then used the feature counts tool which gives me a tabular output of 7 columns (gene id, location, start, end, strand, length, sample # count). However, instead of having a table where the counts for all of my samples are summarized in separate columns (i.e. gene id, location, start, end, strand, length, sample #1, samples #2, samples #3 etc) I get a separate table for each sample. I want to avoid having to download and copy paste the last column of each table together to get a useable document with data for all my samples. Is there way to get feature counts to give me a single summary table containing the data for all of my samples?
Thank you for your help!