tnx for the reply. i try ur suggested website http://support.illumina.com/sequenci...e/igenome.html. but i cant download in our campus internet because of some security problem.
i try to ask in my university and get a permission to download that file .
once again thank u
Seqanswers Leaderboard Ad
Collapse
Announcement
Collapse
No announcement yet.
X
-
Originally posted by dinesh21.ksd View Postguys, now i am working on earthworm RNA sequencing. i need to study the gene expression of earthworm RNA seq.
for gene expression analysis i use tophat and cufflinks.
(ref: Differential gene and transcript expression analysis of RNA-seq experiments with TopHat and Cufflinks)
i am already install all the software (tophat, cufflinks, bowtie, CummeRbund). for running these software i need reference genome.
in that above ref. paper reference genome download via their website. but i am not able to download the reference genome. they ask username and password.
so kindly help me to download the reference genome.
then also help me to choose the reference genome which one is suitable for earthworm.
You are the earthworm expert (relatively speaking) so you need to include additional information about which earthworm species are you specifically looking at/for.
Here is an example earthworm genome that may or may not work for you.
If the genome you are looking for is not available publicly (e.g. Amynthas) then you may need to assemble a transcriptome yourself using RNAseq data.
Leave a comment:
-
Originally posted by dinesh21.ksd View Postguys, now i am working on earthworm RNA sequencing. i need to study the gene expression of earthworm RNA seq.
for gene expression analysis i use tophat and cufflinks.
(ref: Differential gene and transcript expression analysis of RNA-seq experiments with TopHat and Cufflinks)
i am already install all the software (tophat, cufflinks, bowtie, CummeRbund). for running these software i need reference genome.
in that above ref. paper reference genome download via their website. but i am not able to download the reference genome. they ask username and password.
so kindly help me to download the reference genome.
then also help me to choose the reference genome which one is suitable for earthworm.
You can always build your own index.
I think your problem is going to be that the only worm reference genome on these web sites is C. elegans, which is probably not closely enough related to
whichever earthworm species you are working with.
If you can't find a closely-related reference genome, you can always try de novo transcriptome assembly.
Leave a comment:
-
guys, now i am working on earthworm RNA sequencing. i need to study the gene expression of earthworm RNA seq.
for gene expression analysis i use tophat and cufflinks.
(ref: Differential gene and transcript expression analysis of RNA-seq experiments with TopHat and Cufflinks)
i am already install all the software (tophat, cufflinks, bowtie, CummeRbund). for running these software i need reference genome.
in that above ref. paper reference genome download via their website. but i am not able to download the reference genome. they ask username and password.
so kindly help me to download the reference genome.
then also help me to choose the reference genome which one is suitable for earthworm.
Leave a comment:
-
Originally posted by michaellim View PostHi Brian,
By the way, so for the mapping to work, does that mean, all the FASTQ files and the reference genome (fasta file) must be in the "current" folder or anywhere in the computer?
Thank you
Leave a comment:
-
Originally posted by Brian Bushnell View PostOh, that's completely my mistake. Sorry! Command should be:
java -ea -Xmx1g -cp C:\bbmap\current\ align2.BBMap ref=ecoli.fasta in=reads.fq out=mapped.sam
However, you need to replace "ecoli.fasta" and "reads.fq" with the actual filenames and paths to your reference file and reads file(s).
By the way, so for the mapping to work, does that mean, all the FASTQ files and the reference genome (fasta file) must be in the "current" folder or anywhere in the computer?
Thank you
Leave a comment:
-
Originally posted by Brian Bushnell View PostOh, that's completely my mistake. Sorry! Command should be:
java -ea -Xmx1g -cp C:\bbmap\current\ align2.BBMap ref=ecoli.fasta in=reads.fq out=mapped.sam
However, you need to replace "ecoli.fasta" and "reads.fq" with the actual filenames and paths to your reference file and reads file(s).
Something happened this time, but still something missing? Oh ok, got it. thank you... Silly me.. hahaha
Thank youAttached Files
Leave a comment:
-
Oh, that's completely my mistake. Sorry! Command should be:
java -ea -Xmx1g -cp C:\bbmap\current\ align2.BBMap ref=ecoli.fasta in=reads.fq out=mapped.sam
However, you need to replace "ecoli.fasta" and "reads.fq" with the actual filenames and paths to your reference file and reads file(s).
Leave a comment:
-
Originally posted by Brian Bushnell View PostIf you cut-and-pasted this:
"could not find or load main class align2.bbmap"
...then the problem is capitalization; Java is case-sensitive (should be BBMap). If not, can you copy and paste the full command line and full error message?
Here's the picture for you to have a look.
Thank you.Attached Files
Leave a comment:
-
If you cut-and-pasted this:
"could not find or load main class align2.bbmap"
...then the problem is capitalization; Java is case-sensitive (should be BBMap). If not, can you copy and paste the full command line and full error message?
Leave a comment:
-
Originally posted by GenoMax View PostIs there an extra space in "C:\bbmap\ align2.BBMap" after bbmap\? Don't have a PC handy to test.
Leave a comment:
-
Is there an extra space in "C:\bbmap\ align2.BBMap" after bbmap\? Don't have a PC handy to test.
Leave a comment:
-
Originally posted by Brian Bushnell View PostMichael,
It is written in Java, so the executable is actually java.exe, which needs to already be on the computer. If not you can get it here.
As for installing BBMap, you need to unzip it (producing a .tar file), then untar it (producing a directory "bbmap"). After that it depends on your operating system, but in any case you need a command prompt (which you get in Windows by generally going to start->run->"cmd" (then push enter).
For Linux and OSX running is very easy, just execute a shellscript (such as "bbmap.sh") by typing the name then hitting enter, which will give you instructions. For Windows it's a little more involved and depends on the specific program, but for BBMap, the command would be something like this, if you unzipped it in C:
java -ea -Xmx1g -cp C:\bbmap\ align2.BBMap ref=ecoli.fasta in=reads.fq out=mapped.sam
If you still have any trouble, please let me know your operating system, where you unzipped the program, and where the reference and read files are located so I can give more specific instructions.
Yup in C:, copied the entire command but it states "could not find or load main class align2.bbmap"
any idea what should I do? Maybe you can devise an executable icon file like those ClustalW alignment which we can just click and run for commandline dummies like me! haha..
Thank you.
Leave a comment:
-
Michael,
It is written in Java, so the executable is actually java.exe, which needs to already be on the computer. If not you can get it here.
As for installing BBMap, you need to unzip it (producing a .tar file), then untar it (producing a directory "bbmap"). After that it depends on your operating system, but in any case you need a command prompt (which you get in Windows by generally going to start->run->"cmd" (then push enter).
For Linux and OSX running is very easy, just execute a shellscript (such as "bbmap.sh") by typing the name then hitting enter, which will give you instructions. For Windows it's a little more involved and depends on the specific program, but for BBMap, the command would be something like this, if you unzipped it in C:
java -ea -Xmx1g -cp C:\bbmap\ align2.BBMap ref=ecoli.fasta in=reads.fq out=mapped.sam
If you still have any trouble, please let me know your operating system, where you unzipped the program, and where the reference and read files are located so I can give more specific instructions.
Leave a comment:
-
Originally posted by Brian Bushnell View Post">chromosomeseq
cccccccccccccccccccccccc
>plasmid1
p1p1p1p1p1p1p1p1
>plasmid2
p2p2p2p2p2p2p2p2"
...would be correct.
Thanks Brian,
By the way, I've downloaded the BBMap, unzipped it, but I must be not doing it correctly, I cannot seem to find an executable file to click to open the software. Can you please advise?
Thank you.
Leave a comment:
Latest Articles
Collapse
-
by seqadmin
Spatial biology is an exciting field that encompasses a wide range of techniques and technologies aimed at mapping the organization and interactions of various biomolecules in their native environments. As this area of research progresses, new tools and methodologies are being introduced, accompanied by efforts to establish benchmarking standards and drive technological innovation.
3D Genomics
While spatial biology often involves studying proteins and RNAs in their...-
Channel: Articles
01-01-2025, 07:30 PM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, Today, 07:35 AM
|
0 responses
12 views
0 likes
|
Last Post
by seqadmin
Today, 07:35 AM
|
||
Started by seqadmin, Yesterday, 09:43 AM
|
0 responses
13 views
0 likes
|
Last Post
by seqadmin
Yesterday, 09:43 AM
|
||
Started by seqadmin, Yesterday, 08:36 AM
|
0 responses
17 views
0 likes
|
Last Post
by seqadmin
Yesterday, 08:36 AM
|
||
Started by seqadmin, 01-17-2025, 09:38 AM
|
0 responses
37 views
0 likes
|
Last Post
by seqadmin
01-17-2025, 09:38 AM
|
Leave a comment: