-
Notifications
You must be signed in to change notification settings - Fork 0
/
read_docs_ymparisto.py
34 lines (29 loc) · 1004 Bytes
/
read_docs_ymparisto.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import sys
import re
import subprocess
import os
def read_text(inp):
feats = []
id = None
for line in inp:
line=line.strip()
if line.startswith("# ID"):
if id != None:
yield(id, feats) # tässä tiedot mitä halutaan kerätä
feats = []
id =line # tätä voi vielä putsatakin
elif id == None:
id =line
else:
continue
else:
if line.startswith("#"): #tämä skippaa nyt muut metatiedot
continue
else:
if line:
line=line.split("\t")
# feats.append(line[5]) # feats on periaatteessa tekstiä sitä mitä halutaan kerätä
feats.append(line[1]) #nyt tämä kerää pelkät sanat, mutta esim. 2lla saa lemmat (kolmas sarake)
yield(id, feats)
for id, feats in read_text(sys.stdin):
print(id, " ".join(feats))