Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8184405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T01:29:22+00:00 2026-06-07T01:29:22+00:00

I want to read token from a text document and check for particular keyword.

  • 0

I want to read token from a text document and check for particular keyword. How would I do that?
For example my file looks like this:

<protein id="Q11" name="HUMAN" length="655" crc64="30E1C1D138">
    <match id="G3DSA:3.30.160.60" name="ZC2f_H2/iegse_NA-bd" dbname="GE3D" status="T" evd="HMPfm">
      <ipr id="IPR013087" name="Zinc finger, H2-type/inrase, D-bindg" tpe="Dain" />
      <ln stt="114" end="142" sc="1.0E-8" />
    </match>

(I want to skip the first line and search for token on the second line for dbname must be equal to GE3D. If it is I want to store the stt number and end number.)

*so i did this but I don’t know why it only return me one number for start and for end, since more than one number should be satisfy the requirement:
from lxml import entree

filename = ‘inQ14591.txt’

with open(filename,’rb’) as f:

root = etree.parse(f)
for ln in root.xpath("/protein/match[@dbname='GE3D']/ln"):
    start = ln.get("stt")
    end = ln.get("end")

print (stt)

print end

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T01:29:24+00:00Added an answer on June 7, 2026 at 1:29 am

    Seems like you can parse it with BeautifulSoup, but I’m not sure exactly what you’re looking for

    from BeautifulSoup import BeautifulSoup
    text = '''<protein id="Q11" name="HUMAN" length="655" crc64="30E1C1D138">
        <match id="G3DSA:3.30.160.60" name="ZC2f_H2/iegse_NA-bd" dbname="GE3D" status="T" evd="HMPfm">
          <ipr id="IPR013087" name="Zinc finger, H2-type/inrase, D-bindg" tpe="Dain" />
          <ln stt="114" end="142" sc="1.0E-8" />
        </match>'''
    
    soup= BeautifulSoup(text)
    
    res=soup.findAll(dbname='GE3D')
    

    Update per your comment to find the stt value, you need to find the line with ln then take the tag with stt like so:

    stt_value = soup.findAll('ln')[0]['stt'] # u'114'
    end_value = soup.findAll('ln')[0]['end'] # u'142'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file. I want read that file. But In that if
I want to read a INI file from python, and I came up with
I want to read the pdf file from raw folder if devices have any
What I want my program to do is to read an input text from
How to read text from image in android app. Edited: I want to detect
I have 2 plain text files that contain some words, like: File 1 Aarhus
I have a php document that deletes tweets. I want to get http_code from
Hi I can't understand this error I want read this XML file: <?xml version=1.0
i want to read an html file by using jquery get function, replace some
I want to read a file piece by piece. The file is split up

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.