right, here's how i got it to work (let me know of there is an easier way):
Singleton script
onready var path_to_node
------
Sought Node script
func _ready()
Singleton.path_to_node = self.get_path()
-----
Other nodes (which need to access sought node)' script
var sought_node = get_node(Singleton.path_to_node)