Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrapped BTB algorithm for SPRAS integration #204

Open
wants to merge 54 commits into
base: master
Choose a base branch
from

Conversation

oliverfanderson
Copy link

Finish wrapping BowTieBuilder pathway reconstruction algorithm into SPRAS environment.

BTB connects multiple source nodes to multiple target nodes in a "BowTie" shape. It can consider weighted edges and works on both directed and undirected graphs.

Copy link
Contributor

@sumedhars sumedhars left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • all tests passed
  • btb ran successfully

for line in edge_file:
line = line.strip()
line = line.split('\t')
line = line[2]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can be colllapsed into:
_ = line.strip().split('\t')[2]

instead of:
line = line.strip() line = line.split('\t') line = line[2]

line = line.split('\t')
line = line[2]

except Exception as err:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe raise an IndexError instead? can say that edge file isnt formatted correctly/etc

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This pull request deletes several of the LocalNeighborhood files. Can you please restore those?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants