Seqanswers Leaderboard Ad
Collapse
X
-
At some stage those 6 .txt files will need to be combined into a single data frame (table) for DESeq analysis. You could do this beforehand in python or bash, or after importing them into R.
If you're not familiar with scripting perhaps the easiest would be to import each file separately in R:
count_sample1 <- read.csv("/home/work/HTSeq/htseqresults/sample1.txt", sep="\t", row.names=1)
colnames(count_sample1) <- "sample1"
count_sample2 <- read.csv("/home/work/HTSeq/htseqresults/sample2.txt", sep="\t", row.names=1)
colnames(count_sample2) <- "sample2"
etc.
Then combine them into a data frame using merge:
combined_counts <- merge(count_sample1, count_sample2, etc., by=row.names)
Something like this should work depending on the HTSeq output format. Check the R help pages for "read.csv" and "merge" for further info.
Good luck!
Leave a comment:
-
-
TopHat-HTSeq-DESeq pipeline (HELP PLEASE!)
Hello all,
I am having an issue with importing my information(6 .txt files) within the directory using Linux and R. The pipeline that I am using is TopHat-HTSeq-DESeq. This may be simple, however, I am no expert. I have 6 .txt files in a directory called htseqresults. Within that directory, I go to R (by typing R). The following is what I attempted:
>library(DESeq)
> datafile<-system.file(path="/home/work/HTSeq/htseqresults")
> datafile
[1] ""
I attempted to use the Differential expression of RNA-Seq data at the gene level –the DESeq package. The data is not stored in my computer, instead is stored in the server. How will I be able to import these 6 .txt files? Is it possible to do collectively? Do I have to import each at one time?
Please help.
AHTags: None
-
Latest Articles
Collapse
-
by seqadmin
The COVID-19 pandemic highlighted the need for proactive pathogen surveillance systems. As ongoing threats like avian influenza and newly emerging infections continue to pose risks, researchers are working to improve how quickly and accurately pathogens can be identified and tracked. In a recent SEQanswers webinar, two experts discussed how next-generation sequencing (NGS) and machine learning are shaping efforts to monitor viral variation and trace the origins of infectious...-
Channel: Articles
03-24-2025, 11:48 AM -
-
by seqadmin
This year’s Advances in Genome Biology and Technology (AGBT) General Meeting commemorated the 25th anniversary of the event at its original venue on Marco Island, Florida. While this year’s event didn’t include high-profile musical performances, the industry announcements and cutting-edge research still drew the attention of leading scientists.
The Headliner
The biggest announcement was Roche stepping back into the sequencing platform market. In the years since...-
Channel: Articles
03-03-2025, 01:39 PM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, 03-20-2025, 05:03 AM
|
0 responses
42 views
0 reactions
|
Last Post
by seqadmin
03-20-2025, 05:03 AM
|
||
Started by seqadmin, 03-19-2025, 07:27 AM
|
0 responses
53 views
0 reactions
|
Last Post
by seqadmin
03-19-2025, 07:27 AM
|
||
Started by seqadmin, 03-18-2025, 12:50 PM
|
0 responses
38 views
0 reactions
|
Last Post
by seqadmin
03-18-2025, 12:50 PM
|
||
Started by seqadmin, 03-03-2025, 01:15 PM
|
0 responses
194 views
0 reactions
|
Last Post
by seqadmin
03-03-2025, 01:15 PM
|
Leave a comment: