Redian新闻
>
求教:Deep sequencing的data convert
avatar
求教:Deep sequencing的data convert# Biology - 生物学
x*y
1
捐给版上了, 版主done会发给大家的。。。
avatar
c*b
2
最近处理一批发表过的数据,完全没有经验,求大家给科普一下。
拿到的数据format如下(恳请告知是什么format):
ACAAACGACTCTCGGCAACGGTTGT 2
ATATGAAGACAAGTAGTGCAGCTCGGAGACGGG 1
ATAATAGAGGTTTTGCAAAACAAT 1
后面的数字代表read number。
我想把这个data换成fasta格式的,不知道什么软件合适,几个million,也不知道自己
的机子能不能搞定。最好是能够有简单的UI,不然搞不定啊,555.
avatar
l*a
3
cong

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
u*1
4
我觉得你要解释更清楚点这到底是什么数据
一般的sequencing reads的数据,首先最短的reads也有36bp,其次所有的base都是有
想对应的phred value的;所以你这肯定不是sequencing数据
印象中一般都是reference genome是fasta格式,所以我猜测你这是什么species的ref
sequence?但不懂后面的1,2是什么意思。
总之不知道是什么。还求高人指点。

【在 c********b 的大作中提到】
: 最近处理一批发表过的数据,完全没有经验,求大家给科普一下。
: 拿到的数据format如下(恳请告知是什么format):
: ACAAACGACTCTCGGCAACGGTTGT 2
: ATATGAAGACAAGTAGTGCAGCTCGGAGACGGG 1
: ATAATAGAGGTTTTGCAAAACAAT 1
: 后面的数字代表read number。
: 我想把这个data换成fasta格式的,不知道什么软件合适,几个million,也不知道自己
: 的机子能不能搞定。最好是能够有简单的UI,不然搞不定啊,555.

avatar
g*n
5
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
c*b
6
不好意思,是小RNA的deep sequencing (不是genome sequence),后面的number是表
示read number(abundance)。
我就想把它变成fasta或者其他可以被下游软件识别的格式。

ref

【在 u*********1 的大作中提到】
: 我觉得你要解释更清楚点这到底是什么数据
: 一般的sequencing reads的数据,首先最短的reads也有36bp,其次所有的base都是有
: 想对应的phred value的;所以你这肯定不是sequencing数据
: 印象中一般都是reference genome是fasta格式,所以我猜测你这是什么species的ref
: sequence?但不懂后面的1,2是什么意思。
: 总之不知道是什么。还求高人指点。

avatar
g*e
7
re
avatar
a*h
8
我觉得你这个像是tag count file (参考 GBS pipeline)。
自己用 linux shell commands will do that (假设你的文件是space delimit):
cat input.txt | nl | gawk -F' ' '{print ">"$1"_"$3"\n"$2}'
>1_2
ACAAACGACTCTCGGCAACGGTTGT
>2_1
ATATGAAGACAAGTAGTGCAGCTCGGAGACGGG
>3_1
ATAATAGAGGTTTTGCAAAACAAT
sequence ID will be unique if you only have one file and also include read
number information. For multiple files, just do: cat file1 file2 file2 | nl
| gawk -F' ' '{print ">"$1"_"$3"\n"$2}'
avatar
P*e
9
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
c*l
10
Looks like microRNA or other siRNA. A script can do this job.

【在 c********b 的大作中提到】
: 最近处理一批发表过的数据,完全没有经验,求大家给科普一下。
: 拿到的数据format如下(恳请告知是什么format):
: ACAAACGACTCTCGGCAACGGTTGT 2
: ATATGAAGACAAGTAGTGCAGCTCGGAGACGGG 1
: ATAATAGAGGTTTTGCAAAACAAT 1
: 后面的数字代表read number。
: 我想把这个data换成fasta格式的,不知道什么软件合适,几个million,也不知道自己
: 的机子能不能搞定。最好是能够有简单的UI,不然搞不定啊,555.

avatar
g*z
11
chi

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
a*h
12
补充一个:如果是tab delimit:
cat input.txt | nl | sed 's/ //g' | gawk -F'\t' '{print ">"$1"_"$3"\n"$2}'
avatar
q*d
13
re
avatar
j*p
14
学写script吧~
avatar
S*b
15
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
c*b
16
看来只好如此了。非常感谢各位啊!

【在 j*p 的大作中提到】
: 学写script吧~
avatar
l*t
17
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
a*h
18

试了我给你的script了么?

【在 c********b 的大作中提到】
: 看来只好如此了。非常感谢各位啊!
avatar
h*e
19
cong
avatar
t*a
20
这解法多漂亮简洁,顶一个
楼主就别发愣了,这个好使

【在 a********h 的大作中提到】
: 我觉得你这个像是tag count file (参考 GBS pipeline)。
: 自己用 linux shell commands will do that (假设你的文件是space delimit):
: cat input.txt | nl | gawk -F' ' '{print ">"$1"_"$3"\n"$2}'
: >1_2
: ACAAACGACTCTCGGCAACGGTTGT
: >2_1
: ATATGAAGACAAGTAGTGCAGCTCGGAGACGGG
: >3_1
: ATAATAGAGGTTTTGCAAAACAAT
: sequence ID will be unique if you only have one file and also include read

avatar
P*f
21
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
c*b
22
我太笨了,不会perl,连在mac terminal下指定文件都不会,刚刚找隔壁实验室的朋友
帮忙跑了一下,很好用。真心感谢!!

【在 a********h 的大作中提到】
:
: 试了我给你的script了么?

avatar
a*h
24

不客气。简单的工作,Linux/Unix shell command 就够了。

【在 c********b 的大作中提到】
: 我太笨了,不会perl,连在mac terminal下指定文件都不会,刚刚找隔壁实验室的朋友
: 帮忙跑了一下,很好用。真心感谢!!

avatar
d*e
25
恭喜!
牛人给个原因好吗?原则我删贴的啦 :)

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
c*e
26

BTW, what do you think about python vs Perl?
I exclusively use python and found many traditional labs prefer
Perl.

【在 a********h 的大作中提到】
:
: 不客气。简单的工作,Linux/Unix shell command 就够了。

avatar
h*i
27
排队

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
a*h
28

don't know Python. My feeling is: perl is much easier to learn than Python
and a bit flexible/powerful than shell script. But it is getting old (no
major updates for a few years!) Python is somewhat like java, your code is
based on how you familiar with the "funcitons" others already written.but
more powerful if you are into some complex problem and for large software (
package) work (where the codes are developed by a team or even multiple
teams). For small informatics jobs, perl or shell is enough.

【在 c********e 的大作中提到】
:
: BTW, what do you think about python vs Perl?
: I exclusively use python and found many traditional labs prefer
: Perl.

avatar
s*9
29
恭喜,恭喜!有什么喜事说出来听听~
avatar
l*1
30
plus 各取所需 用C++ or Perl or python or R etc 取决于生信分析的对象
样品数量和目的项目
比如楼主的问题 如是 NGS high.through raw data 也可 try python based
Bcbio-nextgen
cited,
Summary: Python scripts and modules for automated next gen sequencing
analysis. These provide a fully automated pipeline for taking sequencing
results from an Illumina sequencer, converting them to standard Fastq format
, aligning to a reference genome, doing SNP calling, and producing a summary
PDF of results
web link:
HTTP: //seqanswers.com/wiki/Bcbio-nextgen
or alternatively,
HTTPS: //bcbio-nextgen.readthedocs.org/en/latest/
for more RNA-seq softs based on different programing platforms,
pls refer,
HTTP: //seqanswers.com/wiki/Software/list

【在 c********e 的大作中提到】
:
: BTW, what do you think about python vs Perl?
: I exclusively use python and found many traditional labs prefer
: Perl.

avatar
t*y
31
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
m*e
32
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
r*x
33
re
avatar
k*8
34
re
avatar
s*y
35
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
B*l
36
re
avatar
s*g
37
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
R*9
38
good
avatar
h*b
39
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
c*t
40
不客气了
avatar
c*t
41
不客气了
avatar
b*t
42
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
S*e
43
zan

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
Z*I
44
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
G*s
45
chi

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
P*T
46
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
m*e
47
rere

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
t*n
48
吃!
avatar
M*y
49
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
J*a
50
re
avatar
s*u
51
还有么~~
re

【在 x***y 的大作中提到】
: 捐给版上了, 版主done会发给大家的。。。
avatar
T*a
52
cong!
avatar
l*t
53
re
avatar
g*3
54
re
avatar
f*t
55
re
avatar
f*y
56
re
avatar
f*t
57
re~
avatar
z*d
58
re~~
avatar
s*3
59
re
avatar
h*1
60
RE
avatar
z*s
61
re
感谢!
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。