Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion spras/rwr.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

class RWR(PRM):
required_inputs = ['network','nodes']
dois = []
# Paper relevant to biological applications of random walks,
# then the original personalized PageRank paper.
dois = ["10.1093/bioinformatics/btq680", "10.1145/511446.511513"]

@staticmethod
def generate_inputs(data, filename_map):
Expand Down
4 changes: 3 additions & 1 deletion spras/strwr.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
# Note: This class is almost identical to the rwr.py file.
class ST_RWR(PRM):
required_inputs = ['network','sources','targets']
dois = []
# Paper relevant to biological applications of random walks,
# then the personalization-vector-based PageRank paper.
dois = ["10.1093/bioinformatics/btq680", "10.1145/511446.511513"]

@staticmethod
def generate_inputs(data, filename_map):
Expand Down
Loading